我需要顯示三個給定數字的最大數字。 'Z'應該顯示爲25是最大的數字。無論如何,編譯時顯示出來。 Java錯誤'else'沒有'if'
我不知道如何解決這個問題,我在課堂上給出的例子是不正確的,在網上查看時,大多數其他代碼比我的複雜得多,而且幫助不大。 我的代碼如下:
class Greater
{
public static void main(String args[])
{
int x = 10, y = 5, z = 15;
if (x>y) and (x>z);
{
System.out.println(x);
}
else if(y>z);
{
System.out.println(y);
}
else
{
System.out.println(z);
}
}
}
[錯誤的可能重複:'else'without'if'](http://stackoverflow.com/questions/13059729/error-else-without-if) – 2014-10-15 02:30:16