黑马程序员技术交流社区

标题: 猜数字--for [打印本页]

作者: 914360849    时间: 2015-5-29 22:10
标题: 猜数字--for
  1. import java.util.*;
  2. class GuessNumber
  3. {
  4.         public static void main(String[] args)
  5.         {
  6.                 int num=(int)(Math.random()*100)+1;

  7.                 Scanner sc=new Scanner(System.in);

  8.                 for(;;)//while(true)
  9.                 {
  10.                         System.out.println("请输入1-100的随机数:");
  11.                         int r=sc.nextInt();

  12.                         if (r>num)
  13.                         {
  14.                                 System.out.println("您猜的大了");
  15.                         }
  16.                         else if (r<num)
  17.                         {
  18.                                 System.out.println("您猜的小了");
  19.                         }
  20.                         else
  21.                         {
  22.                                 System.out.println("您猜中了");
  23.                                 break;
  24.                         }
  25.                
  26.                 }
  27.         }
  28. }
复制代码


作者: Lucus    时间: 2015-5-29 22:56
  1. for(;;){}  和 while(true){}都是死循环,学习了
复制代码

作者: 下一页5    时间: 2015-5-30 00:35
牛逼,我都没想到




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2