/**
需求:编写一个1-100的偶数,进行猜数。
思路:1.首先键盘录入。
2.创建一个变量录入随机的值。使其值为偶数。
3.因为不知道循环次数所以创建一个while循环。
4.if语句判定条件。
*/
import java.util.Scanner;
class YouXi
{
public static void main(String[] args)
{
int b = 0;
//while(true)
//{
b = ((int)((Math.random()*50+1)))*2;
/*if(b % 2 != 0)
{
System.out.println(b);
System.exit(0);
}*/
//}
while(true)
{ Scanner sum = new Scanner(System.in);
System.out.println("请输入1-100的偶数");
int a = sum.nextInt();
if(a > b && a % 2 == 0)
{
System.out.println("大了");
}
else if(a < b && a % 2 == 0)
{
System.out.println("小了");
}
else if(a == b && a % 2 == 0)
{
System.out.println("恭喜你获得一个微笑");
break;
}
}
}
}
|