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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了猜年龄游戏,输入数字,直到猜对为止相关的知识,希望对你有一定的参考价值。

技术分享
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();
            }
        }
    }
}
年龄游戏

技术分享

以上是关于猜年龄游戏,输入数字,直到猜对为止的主要内容,如果未能解决你的问题,请参考以下文章

C语言趣味猜数字游戏.

C语言编程:编写一个猜数的游戏,系统自动产生一个随机数,你来猜,程序给出提示,直到猜对为止。

猜数字游戏

用C语言实现猜数字游戏

Python:猜数字游戏

Python实现猜数字游戏