当前位置: 代码迷 >> J2SE >> 求问为何while条件语句总是提示找不到符号
  详细解决方案

求问为何while条件语句总是提示找不到符号

热度:134   发布时间:2016-04-23 19:41:09.0
求问为什么while条件语句总是提示找不到符号
public static void main(String[] args) {
        int secretNumber=(int)(Math.random()*100);
        System.out.println("Key in your guess: ");
        Scanner kb=new Scanner(System.in);
        int firstguess=kb.nextInt();
        While (firstguess<secretNumber) {

提示找不到符号
------解决思路----------------------
……不是大小写错了吧 while
  相关解决方案