A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 果蝇 中级黑马   /  2015-9-1 22:44  /  472 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

import java.util.*;
class GuessNum{
        public static void main(String[] args){
                int bingo = random();
                int count = 1;
                //System.out.println(bingo);
                Scanner sc = new Scanner(System.in);
                while(true){
                        if (count != 1)
                        System.out.println("o(︶︿︶)o o(︶︿︶)o o(︶︿︶)o ");
                        System.out.println("The count is "+count+",please putin the number(for 1~100):");
                        int num = sc.nextInt();
                                if ( num == 0 ){
                                        System.exit(0);
                                }else if ( num<bingo ){
                                        System.out.println("The key is more bigger than the number. ");
                                }else if ( num>bingo){
                                        System.out.println("The key is more smaller than the number.");       
                                }else {
                                        if (count<10){
                                                System.out.println("Bingo!");
                                                break;
                                        }else{
                                                System.out.println("Rihgt,but you are SB?");
                                                break;
                                        }
                                }
                count++;
                }
        }


        public static int random(){
                int bingo = (int)(100*Math.random()-1);
                //System.out.println(bingo);
                return bingo;
        }
}

没有写注释的习惯,以后要改改了.

3 个回复

倒序浏览
习惯性回帖   还不错
回复 使用道具 举报
为了分                     
回复 使用道具 举报
..................稍微注释看明白一些啊,没汉字哈- -
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马