import java.util.Scanner;
public class QiGai {
public static void main(String[] args) {
//创建输入流对象
Scanner sc = new Scanner(System.in);
while (true) {
//提示用户输入想查询的天数
System.out.println("请输入您想查询收入的天数:");
int day = sc.nextInt();
//判断天数是否正确,不正确提醒用户重新输入
if (day < 1) {
System.out.println("天数不能少于1,请重新输入");
} else {
//定义变量接收收入
long money = 1;
if (day == 1) {
System.out.println("第一天收入为" + money + "元");
break;
} else {
for (int i = 1; i < day; i++) {
money *= 2;
}
System.out.println("洪乞丐第" + day + "天收入为:" + money + "元");
break;
}
}
}
}
}
|