返回列表 發帖

救命,老師快救我。阿阿阿阿阿阿阿阿阿阿

  1. import java.io.*;
  2. import java.util.*;
  3. public class jva110
  4. {
  5.         public static void main(String arg[])
  6.         {
  7.        
  8.         //取得出題數量
  9.         int userItemCoount = arg.length / 2;
  10.        
  11.         //是否為使用者出題(自由出題)
  12.         Boolean isUserItem = (userItemCoount > 0);
  13.        
  14.         //宣告題目陣列
  15.         String itemQue[];
  16.         String itemAns[];
  17.         //判斷是否是自由出題
  18.                 if(isUserItem)
  19.                 {
  20.                 //是自由出題
  21.                
  22.                 //建立陣列
  23.                 itemQue = new String[userItemCoount];
  24.                 itemAns = new String[userItemCoount];
  25.                 //寫入題目
  26.                         for(int i=0;i<arg.length;i+=2)
  27.                         {
  28.                                 itemQue[i/2] = arg[i];
  29.                                 itemAns[i/2] = arg[i+1];
  30.                         }
  31.                 }else{
  32.                 //是預設題目
  33.                         itemQue = new String[]{"電腦","資料庫","語法","學校","假期"};
  34.                         itemAns = new String[]{"computer","database","syntax","school","Vocation"};
  35.                 }
  36.         //紀錄開始時間
  37.         long startTime = new Date().getTime();
  38.        
  39.         //顯示資訊
  40.         System.out.println("請將題目的中文字彙翻譯成英文單字!");
  41.         System.out.println("輸入英文單字答案後請按Enter鍵:\n");
  42.        
  43.         //輸入擷取物件
  44.         Scanner scanner =new Scanner(System.in);
  45.        
  46.         //宣告答對題目數變數
  47.         int Right=0;
  48.         //開始出題
  49.                         for(int i=0;i<itemQue.length;i++)
  50.                         {
  51.                         System.out.println("第" + (i+1) +"題__ " + itemQue[i]);
  52.                         String useInput = scanner.next();
  53.                
  54.                         String ans = itemAns[i].toLowerCass();
  55.                         useInput = useInput.toLowerCass();
  56.                        
  57.                                 if(useInput.equals(ans))
  58.                                 {
  59.                                 System.out.println("答對了!");
  60.                                 Right++;
  61.                                 }else{
  62.                                 System.out.println("答錯了!");
  63.                                 System.out.println("正確答案是" + itemAns[i]+"\n");
  64.                                 }
  65.                        
  66.                         }
  67.         //結算時間
  68.         long endTime = new Date().getTime();
  69.         long useTime = (endTime-startTime)/1000;
  70.        
  71.         System.out.println("你使用了" + useTime + "秒,在" + itemQue.length + "題中答對了" + Right + "題");
  72.         }
  73. }
複製代碼
老師,為甚麼一直有兩個錯誤訊息 * F+ n0 O3 B0 j2 j; I( B3 ^
錯誤訊息如下
$ j* F- A8 S" ]2 h  l! Tjva110.java:54: error: cannot find symbol
5 n4 ]3 f0 {& c                        String ans = itemAns.toLowerCass();
  J: P: q# u$ I+ J9 ?8 X$ C                                               ^
7 G+ [' B1 r- m  symbol:   method toLowerCass()% R; w+ ]: C! T2 @4 D. F1 C+ t
  location: class String6 R+ S4 W# k, W/ B% |$ \( e! l, @
jva110.java:55: error: cannot find symbol
0 B# \2 j6 l( M5 y; L0 {$ v                        useInput = useInput.toLowerCass();
2 E1 _3 Q9 H" J# V, O                                           ^
# q( R4 b+ Y+ r& l  symbol:   method toLowerCass()  q: ?; R1 C3 @! C7 ^- n4 \
  location: variable useInput of type String: R* a; y6 Q% a2 ~8 f
2 errors
水桶小鄭,鯰魚

小雲雀

TOP

回復 1# TOM & O+ E* z0 Q; c/ i

1 Y$ {& W6 W# K不知!~©©©©©©©©

TOP

是toLowerCase();不是toLowerCass();
8 d  _4 h& a2 S+ h) v& F, \/ d& ?0 Y" F+ A2 f+ k  n) G# V) w; _, B
# J$ G; W7 E' n, ]: y. [* ^
String ans = itemAns[i].toLowerCase();  j7 |6 x+ e. |, B- S) E
useInput = useInput.toLowerCase();
★ 嘉凱~~☆

TOP

返回列表