为了账号安全,请及时绑定邮箱和手机立即绑定

显示cannot find symbol,不知道为什么?

显示cannot find symbol,不知道为什么?

qq_耿浩铭_0 2019-03-25 18:40:22
import java.util.Scanner;public class myfirst { public static void main(String[] args) {     final int NUMBER_OF_QUESTION = 5;     int correctCount = 0 ;     int count = 0;     long starTime = System.currentTimeMills();     String output = "";     Scanner input = new Scanner(System.in);          while (count < NUMBER_OF_QUESTION ) {         int number1 = (int)(Math.random()*10);         int number2 = (int)(Math.random()*10);         if (number1 < number2) {             int temp = number1;             number1 = number2;             number1 = temp;                  }      System.out.print(       "what is " + number1 + " - " + number2 + " ? ");       int answer = input.nextInt();              if (number1 - number2 == answer){           System.out.println("You are correct!");           correctCount++;       }       else          System.out.print("Your answer is wrong.\n" + number1 + " - " + number2 + " should be " + (number1 - number2) );         coount ++;         output += "\n" + number1 + "-" + number2 + "=" + answer +          ((number1 - number2 == answer)? "corrrect" : wrong);              } long  endTime = System.currentTimeMills(); long  textTime = endTime - starTime; System.out.println("Correct count is " + correctCount + "/nTest time is " + testTime/1000 + "seconds/n" + output); }    }
查看完整描述

1 回答

?
EnchantF

TA贡献19条经验 获得超4个赞

代码格式化,你这样没人想看的

查看完整回答
反对 回复 2019-03-26
  • 1 回答
  • 0 关注
  • 3277 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信