终于成功了,试了大概有10来分钟吧,要完成输出hello world的效果,就要在判断语句中将另一部分输出
代码贴上,上面注释的那句是实验用的,不能用,刚开始想的方法是在args数组中动脑筋,发现不太好弄
class Test
{
public static void main(String[] args)
{
//if(System.out.equals("hello") || System.out.printf("hello")){
if (System.out==System.out.printf("hello "))
{
System.out.println("world");
}
else{
System.out.println("hello");
}
}
}
|