码迷,mamicode.com
首页 > 其他好文 > 详细

猜年龄游戏,输入数字,直到猜对为止

时间:2016-03-02 12:53:42      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
package com.hanqi;

import java.util.Scanner;

public class nianlingyouxi {

    public static void main(String[] args) {
        
        Scanner sc=new Scanner(System.in);
        
        System.out.println("请猜测我的年龄:");
        
        int i=sc.nextInt();   //i为年龄
        
        for(int j=0;j<200;j++)
        {
            if(i==27)
            {
                System.out.println("恭喜您,您猜对了");
                
                break;
            }
            else
            {             
                if(i>27)
                 {
                     System.out.println("很遗憾,您猜的数太大了");
                 }
                 else
                 {
                     System.out.println("很遗憾,您猜的数太小了");
                 }               
                i=sc.nextInt();
            }
        }
    }
}
年龄游戏

技术分享

猜年龄游戏,输入数字,直到猜对为止

标签:

原文地址:http://www.cnblogs.com/wangchuanqi/p/5234088.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!