|
class helloworld{
public static void main(String args[])
{
int i=10;
int j=10;
int x=0;
boolean Test=false;
System.out.println("i"+"\t"+"j");
x>0? x : -x;
//Test?(i=1)j=1);
System.out.println(i+"\t"+j);
Test=true;
//Test?(i=0)j=0);
System.out.println(i+"\t"+j);
}
}
编译不通过。。
helloworld.java:12: not a statement
x>0? x : -x;
^
1 error |
|