/**标签:salary,Java,薪水,System,年薪,计算器,println,out From: https://www.cnblogs.com/shidawuyu/p/17162274.html
* 薪水计算器
* 1.通过键盘输入用户的月薪,每年是几个薪水
* 2.输出用户年薪
* 3.输出一行字“如果年薪超过10万,恭喜你超越了90%的国人;如果年薪超过了20万,恭喜你超越了98%的国人”
* 4.直到键盘输入数字88,则退出程序(使用break语句退出循环)
* 5.键盘输入66,则这个用户显示“重新开始计算”然后算下一个用户的年薪
*/
import java.util.Scanner;//导入
public class salary_counter {
public static void main(String[] args){
Scanner s=new Scanner(System.in);
System.out.println("******我的薪水计算器******");
System.out.println("1.输入88,退出程序\n2.输入66,计算下一个年薪");
while(true) {
System.out.println("请输入用户的月薪:");
int month_salary = s.nextInt();
System.out.println("请输入一年几个月的薪资:");
int months=s.nextInt();
int year_salary=month_salary*months;
System.out.println("年薪是:"+year_salary);
if (year_salary >= 2e5) {
System.out.println("恭喜你超越了98%的国人");
} else if (year_salary > 1e5) {
System.out.println("恭喜你超越了90%的国人");
}
System.out.println("输入88,退出循环;输入66,继续下一个");
int comm=s.nextInt();
if(comm==88){
System.out.println("退出循环!");
break;
} else if (comm==66) {
System.out.println("继续下一个!");
continue;
}
}
}
}