12月31日 作业

public class Test {
 static int abc = 123; //成员变量
    public static void main(String[] args) {
        // TODO 自动生成的方法存根

        
int n=4;
      
      int m=3;
      
      String s = (n==m) ? "相等" : "不相等";
      
      System.out.println(s);
      
      int f = (n>m) ? n:m;
      
      System.out.println("较大的数字为"+f);
}

}

2.

public class Test {
 static int abc = 123; //成员变量
    public static void main(String[] args) {
        // TODO 自动生成的方法存根

        
         double a = 38.9;
      double b = 27.2;
      
      double c = a*b;
      System.out.print("矩形的面积为"+c);
    
    }

}

结果:

 

posted on 2016-01-03 18:53  一方通行o  阅读(96)  评论(0编辑  收藏  举报

导航