“猜数字“游戏,系统随机生成一个[1,100]的数字,由用户输入数字后,计算机提示输入数字“偏大”“偏小”,并记录猜数次数
Posted 江台戏子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了“猜数字“游戏,系统随机生成一个[1,100]的数字,由用户输入数字后,计算机提示输入数字“偏大”“偏小”,并记录猜数次数相关的知识,希望对你有一定的参考价值。
import java.util.Scanner;
public class Demo {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner in = new Scanner(System.in);
int number = (int) (Math.random()*100+1);
//(0,1)*100=(0,100)+1=[1,100]
int count = 0;
int a;
do {
a = in.nextInt();
if(a>number)
{
System.out.println("偏大");
}
else if (a<number)
{
System.out.println("偏小");
}
count++;
}while(a!=number);
System.out.println("恭喜你猜对了,你猜了"+count+"次");
}
}
以上是关于“猜数字“游戏,系统随机生成一个[1,100]的数字,由用户输入数字后,计算机提示输入数字“偏大”“偏小”,并记录猜数次数的主要内容,如果未能解决你的问题,请参考以下文章
“猜数字“游戏,系统随机生成一个[1,100]的数字,由用户输入数字后,计算机提示输入数字“偏大”“偏小”,并记录猜数次数