黑马程序员技术交流社区
标题:
输入一个数判断该数是闰年还是平年。(代码)
[打印本页]
作者:
lockwood
时间:
2015-5-3 21:41
标题:
输入一个数判断该数是闰年还是平年。(代码)
class NumberGuess {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入要猜的数字");
int numberguess = sc.nextInt();
int x = 0;
while(x <= numberguess) {
if (x == numberguess) {
System.out.println("该数字是" + x);
}
x++;
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2