• JAVA学习(年薪计算器)


    要求: 制作一个年薪计算器;
     * (1)通过键盘输入用户的月薪、每年是几个月薪水。
     * (2)输出用户的年薪;
     * (3)输出一行字“如果年薪超过10万,恭喜你超越90%的国人”,“如果年薪超过20万,恭喜你超越98%的国人”。
     * (4)直到键盘输入数字88,则退出程序(使用break退出循环);键盘输入66,直接显示“重新开始计算...”,然后算下一个用户的年薪。同时,对用户输入的命令进行检查,如果不是66、88则要求重新输入。
    1. import java.util.Scanner;
    2. public class SalaryCalculator {
    3. public static void main(String[] args) {
    4. Scanner s=new Scanner(System.in);
    5. System.out.println("**********年薪计算器**********");
    6. System.out.println("1.输入88退出程序;\n2.输入66,计算下一个年薪;");
    7. while(true){
    8. System.out.print("输入月薪:");
    9. int monthSalary=s.nextInt();
    10. System.out.print("输入一年可以获得多少个月工资:");
    11. int months=s.nextInt();
    12. int yearSalary=monthSalary*months; //计算年薪
    13. //根据年薪做出提示,使用If判断;
    14. System.out.print("您的年薪是:"+yearSalary+",");
    15. if (yearSalary>=200000){
    16. System.out.println("恭喜你超越98%的国人!");
    17. }else if (yearSalary>100000) {
    18. System.out.println("恭喜你超越90%的国人!");
    19. }else{
    20. System.out.println("您需要继续努力了!");
    21. }
    22. System.out.println("**************"); //为了美观设置一条装饰线
    23. System.out.println("1.输入88退出程序;2.输入66,计算下一个年薪;");
    24. int comm=s.nextInt();
    25. //对输入的命令进行检查,如果不是66/88则进行重新输入。
    26. while (comm!=66&comm!=88){
    27. System.out.println("命令输错误,请重新输入:");
    28. comm=s.nextInt();
    29. }
    30. if (comm==88){
    31. System.out.println("系统退出。");
    32. break;
    33. }else if (comm==66) {
    34. System.out.println("****计算下一个年息*****");
    35. continue;
    36. }
    37. }
    38. }
    39. }

     

  • 相关阅读:
    搭建私有云盘 cloudreve
    NLP之基于Seq2Seq和注意力机制的句子翻译
    一个基于SpringBoot+Vue前后端分离学生宿舍管理系统详细设计实现
    Prim求最小生成树
    vue-advanced-chat使用指南
    【Qt6.3 基础教程 05】 掌握Qt Widgets:使用 QLabel 和 QPushButton
    redis 常用方法
    ISO7816-3标准ATR解析
    护眼灯真的可以保护眼睛吗?2022买什么护眼灯不伤孩子眼睛
    关于LWIP的一点记录(一)
  • 原文地址:https://blog.csdn.net/weixin_47401101/article/details/133442474