• 【Java刷题进阶】基础入门篇⑩


    📩很多朋友都问我学完基础知识以后怎样提高编程水平?当然是刷题啦!很多小伙伴都在纠结从哪里开始,今天给大家推荐一个身边朋友都在使用的刷题网站:点击进入牛客网刷题吧! 各大互联网大厂面试真题,成体系的分类题库,从入门到进阶,分类练习哦!


    🌕前言

    📩Java基础学习主要以练习为主,很多朋友听完视频课程学会基础以后感觉对练手项目无从下手,这里推荐去牛客网看看,这里的IT题库内容很丰富,属于国内做的很好的IT学习网站,而且是课程+刷题+面经+求职+讨论区分享,一站式求职学习网站,最最最重要的里面的资源全部免费!!

    在这里插入图片描述
    📩从基础开始练习,知识点编排详细,题目安排合理,题目表述以指导的形式进行。整个题单覆盖了java入门的全部知识点以及全部语法,通过知识点分类逐层递进,从基础开始到最后的实践任务,都会非常详细地指导你应该使用什么函数,应该怎么输入输出。
    在这里插入图片描述
    📩牛客网还提供题解专区和讨论区会有大神提供题解思路,对新手玩家及其友好,有不清楚的语法,不理解的地方,看看别人的思路,别人的代码,也许就能豁然开朗。快来点击链接开始刷题吧:牛客网刷题进阶!


    第一题:判断各类型字符个数

    🍂题目描述

    输入一行字符串,分别统计出其中英文字母、空格、数字和其它字符的个数

    输入描述:
    控制台随机输入一串字符串
    输出描述:
    输出字符串中包含的英文字母个数,数字个数,空格个数,其它字符个数(格式为:英文字母x数字x空格x其他x),预设代码中已给出输出

    🍂示例

    输入: !@#¥% asdyuihj 345678
    输出: 英文字母8数字6空格2其他5
    备注: 代表数字的ASCII码值为48-57

    🍂题解

    🍃方法一

    import java.util.Scanner;
     
    public class Main {
        public static void main(String[] args) {
            int numbers = 0;
            int words = 0;
            int space = 0;
            int other = 0;
            Scanner scanner = new Scanner(System.in);
            String str = scanner.nextLine();
     
            for(int i=str.length()-1; i>=0; i--){
                char c = str.charAt(i);
                if((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')){
                    words++;
                }else if (c >= '0' && c <= '9'){
                    numbers++;
                }else if (c == ' '){
                    space++;
                }else{
                    other++;
                }               
            }
                 
     
            System.out.println("英文字母"+words+"数字"+numbers+"空格"+space+"其他"+other);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    🍃方法二

    import java.util.Scanner;
     
    public class Main {
        public static void main(String[] args) {
            int numbers = 0;
            int words = 0;
            int space = 0;
            int other = 0;
            Scanner scanner = new Scanner(System.in);
            String str = scanner.nextLine();
     
            for(int i=str.length()-1; i>=0; i--){
                char c = str.charAt(i);
                if(Character.isLetter(c)){
                    words++;
                }else if (Character.isDigit(c)){
                    numbers++;
                }else if (Character.isWhitespace(c)){
                    space++;
                }else{
                    other++;
                }               
            }
                 
     
            System.out.println("英文字母"+words+"数字"+numbers+"空格"+space+"其他"+other);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    第二题:编写个人所得税计算程序

    🍂题目描述

    个人所得税是国家对本国公民、居住在本国境内的个人的所得和境外个人来源于本国的所得征收的一种所得税。假设某地区的起征点为3500元(即月工资低于3500时不需要缴纳个人所得税),个人所得税的计算公式为:应纳税额=(工资薪金所得-扣除数)×适用税率-速算扣除数。其中,扣除数为3500元,适用税率以及速算扣除数如下表所示(注:此表并非当前国家个人所得税缴纳标准表,且为简化逻辑个人所得税的计算方式也进行了一定修改)

    表-1 个人所得税缴纳标准

    全月应纳税所得额税率速算扣除数(元)
    不超过1500元3%0
    超过1500元至4500元10%105
    超过4500元至9000元20%555
    超过9000元至35000元25%1005
    超过35000元至55000元30%2775
    超过55000元至80000元35%5505
    超过80000元40%13505

    上表中的全月应纳税所得额=工资薪金所得-扣除数。

    现在请你新建三个employee对象小明,小军和小红,他们的月工资分别为2500,8000,100000。并将他们按照顺序存入集合中。遍历集合并计算他们应缴纳的个人所得税(个人所得税为double类型,保留一位小数)。

    输入描述:

    输出描述:
    小明应该缴纳的个人所得税是:xxx
    小军应该缴纳的个人所得税是:xxx
    小红应该缴纳的个人所得税是:xxx

    🍂题解

    import java.util.*;
     
    public class Main {
        public static void main(String[] args) {
            List<Employee> employees = new ArrayList<>();
     
            //write your code here......
     
    Employee employee1 = new Employee("小明",2500);
    Employee employee2 = new Employee("小军",8000);
    Employee employee3 = new Employee("小红",100000);
    employees.add(employee1);
    employees.add(employee2);
    employees.add(employee3);
             
            for (int i = 0; i < employees.size(); i++) {
            double tax = 0.0;
            double taxIncome = employees.get(i).getSalary() - 3500;
            if (taxIncome <= 0) {
                tax = 0.0;
            } else if (taxIncome <= 1500) {
                tax = taxIncome * 0.03;
            } else if (taxIncome <= 4500) {
                tax = taxIncome * 0.10 - 105;
            } else if (taxIncome <= 9000) {
                tax = taxIncome * 0.20 - 555;
            } else if (taxIncome <= 35000) {
                tax = taxIncome * 0.25 - 1005;
            } else if (taxIncome <= 55000) {
                tax = taxIncome * 0.30 - 2755;
            } else if (taxIncome <= 80000) {
                tax = taxIncome * 0.35 - 5505;
            } else {
                tax = taxIncome * 0.45 - 13505;
            }
            System.out.println(employees.get(i).getName()+"应该缴纳的个人所得税是:" + tax);
        }
        }
    }
    class Employee{
        private String name;
        private int salary;
        public Employee(String name, int salary) {
            this.name = name;
            this.salary = salary;
        }
        public String getName() {
            return name;
        }
     
        public int getSalary() {
            return salary;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54

    第三题:记录点赞用户

    🍂题目描述

    为了实现社区点赞功能,要求设计一个点赞记录器,该工具在这里插入代码片包含如下两个方法:

    1. like方法:该方法需要传入用户名作为参数,如果用户没点赞过,则记录本次点赞行为,若用户已经点赞过,则删除他的点赞行为。
    2. getLikeUsers方法:该方法需要返回所有点赞用户的名字,不要求顺序。
      (为保证答案正确,请使用HashSet完成本题)

    输入描述:
    用户名
    输出描述:
    所有点赞且未取消点赞的用户名,不要求顺序。(输出为Arrays.toString形式)

    🍂示例

    输入: Tom Jim Lucy Lily Tom Lucy Tom
    输出: [Tom, Lily, Jim]

    🍂题解

    import java.util.*;
     
    public class Main {
     
        public static void main(String[] args) {
            LikeRecorder recorder = new LikeRecorderImpl();
     
            Scanner scanner = new Scanner(System.in);
            while (scanner.hasNext()) {
                String name = scanner.next();
                recorder.like(name);
            }
     
            System.out.println(Arrays.toString(recorder.getLikeUsers()));
        }
     
    }
     
    /**
     * 点赞记录器
     */
     
    interface LikeRecorder {
     
        /**
         * 若用户没有点赞过,则记录此次点赞行为。
         * 若用户曾经点赞过,则删除用户点赞记录。
         *
         * @param username 用户名
         */
        void like(String username);
     
        /**
         * 返回所有点赞的用户名
         *
         * @return 用户名数组
         */
        String[] getLikeUsers();
     
    }
     
    class LikeRecorderImpl implements LikeRecorder {
        private HashSet<String> names = new HashSet();
     
    @Override
    public void like(String name) {
        if (names.contains(name)) {
            names.remove(name);
        } else {
            names.add(name);
        }
    }
     
    @Override
    public String[] getLikeUsers() {
        return names.toArray(new String[0]);
    }
     
        // write your code here......
     
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
  • 相关阅读:
    离线密码破解(1)
    网络编程面试笔试真题
    CTF本地靶场搭建——静态flag题型的创建
    当PBlaze6 6920 Raid阵列遇到FC SAN
    Java的引用(Reference)数据类型概述
    小红书达人笔记的优势以及达人笔记形式有哪些
    uniapp app tabbar 页面默认隐藏
    Hello CTP(一)——期货业务
    C# - 能否让 SortedSet.RemoveWhere 内传入的委托异步执行
    数据通信原理期末总复习
  • 原文地址:https://blog.csdn.net/zhangxia_/article/details/126687076