package com.hanqi; import java.util.Scanner; public class Caishengri { public static void main(String[] args) { //for(int m=1;;m++) Scanner sc=new Scanner(System.in); while(true) { System.out.println("请输入您猜测的日期:"); int i=sc.nextInt(); if(i>0&&i<31) { if(i<18) { System.out.println("很遗憾,猜小了!请继续猜测"); } else if(i>18) { System.out.println("很遗憾,猜大了!请继续猜测"); } else { System.out.println("恭喜你!猜对了!!"); break; } } else { System.out.println("您的输入有误,请重新输入!!请继续猜测"); } } sc.close(); } }