猜年龄游戏,输入数字,直到猜对为止
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(); } } } }
以上是关于猜年龄游戏,输入数字,直到猜对为止的主要内容,如果未能解决你的问题,请参考以下文章