标签:port str png 分享 package img nbsp bsp math
1 package com.xt.homework.hw09; 2 import java.util.Scanner; 3 /** 4 * 4. 猜数字游戏。随机产生一个1—100的整数, 5 * 让用户去猜,猜大了(或者猜小了)都有提示; 6 * 直到用户猜对,提示成功,程序结束。 7 * 8 * @author 天耀二期 9 * 杨勃隆 10 */ 11 public class HomeWork04 { 12 public static void main(String[] args){ 13 double b = Math.random(); 14 b*=100; 15 if((int)(b+0.5)>(int)b){ 16 b=(int)b+1;} 17 else{ 18 b=(int)b;} 19 while(1==1){ 20 System.out.println("请输入您猜的数:"); 21 Scanner scan = new Scanner(System.in); 22 int a = scan.nextInt(); 23 if(a>b){ 24 System.out.println("---您猜大了---");} 25 if(a<b){ 26 System.out.println("---您猜小了---");} 27 if(a==b){ 28 System.out.println("++恭喜您,猜对了++"); 29 break;} 30 } 31 }
枯燥的学习,玩玩游戏也挺不错的!
标签:port str png 分享 package img nbsp bsp math
原文地址:http://www.cnblogs.com/ieybl/p/java.html