A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 赵佳 初级黑马   /  2013-7-5 22:05  /  1131 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 杜光 于 2013-7-6 08:00 编辑

public class Text {
public static void main(String[] args) {
  if(___________){
   System.out.println("world");
  }
  else{
   System.out.println("hello");
  }
}
}
只能在if(_____)里面写代码,如何让输出结果是“hello world”?

评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

4 个回复

倒序浏览
楼主试试这样写
package test;
public class NewDemo {
public static void main(String[] args) {

         if (System.out.append("hello ") != null) {
             System.out.println("world");
         } else {
             System.out.println("hello");
         }
     }
}



评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

回复 使用道具 举报
  1. public class Text {
  2. public static void main(String[] args) {
  3. if(System.out.printf("hello ")!=null) {
  4. System.out.println("world");
  5. }
  6. else{
  7. System.out.println("hello");
  8. }
  9. }
  10. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
杨兴庭 + 1

查看全部评分

回复 使用道具 举报
  1. public class Text11
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 {
  6.                         System.out.print("Hello ");   //构造代码块
  7.                 }

  8.                 if(new Text11() != null)
  9.                 {
  10.                         System.out.println("World");
  11.                 }
  12.                 else
  13.                 {
  14.                         System.out.println("Hello");
  15.                 }
  16.         }       
  17. }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马