返回列表 發帖

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

  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. }
複製代碼
老師,為甚麼一直有兩個錯誤訊息 0 O* L) h5 n# O) d
錯誤訊息如下3 F' f, `- ]% X" r
jva110.java:54: error: cannot find symbol/ [  w  \( T' O8 @
                        String ans = itemAns.toLowerCass();7 ~7 x4 T6 ^; Z/ n  \' `3 i4 J
                                               ^" Z+ o# C# H/ ?! g. `
  symbol:   method toLowerCass()3 W: N* h  X" x; x, y
  location: class String6 d3 H  \3 y' C- I3 M
jva110.java:55: error: cannot find symbol5 @/ z2 K- Q, }2 S# ?
                        useInput = useInput.toLowerCass();
: j7 ]# x% f. P( o3 I3 G( B                                           ^# P, l: E2 ?) F
  symbol:   method toLowerCass()+ J: O, F  \9 c) ?8 u- c6 k  Z
  location: variable useInput of type String- I" h$ i( D  |' v; @" x3 D( O
2 errors
水桶小鄭,鯰魚

小雲雀

TOP

回復 1# TOM . G& \0 `% u* o# h" v' U* B- j
1 C3 C3 T: ]% |5 [
不知!~©©©©©©©©

TOP

是toLowerCase();不是toLowerCass();
# {4 B- G0 U4 A# s
0 F2 n) U  ?7 b' G) G5 ]$ R4 z9 l3 G4 D5 O5 x. w( J- c
String ans = itemAns[i].toLowerCase();
' f7 u( W% S- O# b' n: _ useInput = useInput.toLowerCase();
★ 嘉凱~~☆

TOP

返回列表