English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

一、(求圓的面積)public class bb{ public static viod main(String args[]) double c, d; c=3.125; d=c*c*3.14; System.out.println(d);}二、public class cc(圓的半徑){ public static viod main(String args[]) {  double c;  c=3.125;  System.out.println(c); }三、 public class bb(學生的成績){ public static viod main (String args[]) { mt b; b=85;  System.out.println (b); }   }上面雖然是課本裡的習題,老師在上課的時候也有說過,可是我回家練習之後,run了好久,就是找不到錯誤點,可以幫我看看是我那裡疏忽了嗎?

2005-10-12 06:57:00 · 4 個解答 · 發問者 丫七 7 in 電腦與網際網路 程式設計

我的意思是說,上面這三個程式,有什麼地方我寫錯了嗎?還是語法不對呢?怎麼沒辨法RUN成功呢?
如果找的到的話,可以明確的提醒我嗎?
謝謝JAVA們的高手。

2005-10-12 07:57:58 · update #1

~"~ 我只是個初學者,你給我注解我會看不懂.......我要的是程式中,我是否有漏掉什麼字串或是什麼的,麻煩一下。

2005-10-12 09:22:01 · update #2

4 個解答

public class bb //(第一題! 看我的注解)*注解的地方是你要加的
{
public static viod main(String args[])
{ // You need the open parenthesis here你的main沒有括號
double c, d;
c=3.125;
d=c*c*3.14;
System.out.println(d);
} // You also need another closing parenthesis here你的main沒有關起來的括號
}

public class cc //第二題(圓的半徑)
{
public static viod main(String args[])
{
double c;
c=3.125;
System.out.println(c);
}
} // You forgot this closing parenthesis 你的class沒有關起來的括號


public class bb // 第三題(學生的成績)
{
public static viod main (String args[])
{
mt b; // What is mt?! You forgot to declare it!!!你沒有宣告mt!!!
b=85;
System.out.println (b);
}
}
//我在國外讀書,所以翻譯可能不好....希望這樣的解答對你有幫助

2005-10-12 08:09:20 · answer #1 · answered by 2 · 0 0

迷途的羔羊,請上樓,你的答案是我這個初學者比較容易懂的。

2005-10-13 10:14:49 · answer #2 · answered by 丫七 7 · 0 0

1,2題 class 少了括號
3題void 打錯成 "viod",int 打錯成"mt"

2005-10-17 00:20:34 補充:
其實他們解釋的滿不錯的..
多看一點他們的注解..
可以學的更多.

2005-10-13 08:47:51 · answer #3 · answered by ? 4 · 0 0

public class bb
{
public static viod main(String args[])

double c, d;
c=3.125;
d=c*c*3.14;
System.out.println(d);

}

另外,你沒說你的錯誤是什麼

2005-10-12 07:16:04 · answer #4 · answered by 空幽 5 · 0 0

fedest.com, questions and answers