黑马程序员技术交流社区

标题: 哈哈,新手写的两个简单代码,好有成就感!!! [打印本页]

作者: bianzhiguo6    时间: 2015-3-19 22:26
标题: 哈哈,新手写的两个简单代码,好有成就感!!!
public class GOOD{
   public static void main(String[]args){
   int x = 8;
   if( x == 1)
       System.out.println("星期一"); //如果输入值等于1的时候,输出星期一
   else if (x == 2)
       System.out.println("星期二");//如果输入值等于1的时候,输出星期二
   else if (x == 3)
       System.out.println("星期三");//如果输入值等于1的时候,输出星期三
   else if (x == 4)
       System.out.println("星期四");//如果输入值等于1的时候,输出星期四
   else if (x == 5)
       System.out.println("星期五");//如果输入值等于1的时候,输出星期五
   else if (x == 6)
       System.out.println("星期六");//如果输入值等于1的时候,输出星期六
   else if (x == 7)
       System.out.println("星期日");//如果输入值等于1的时候,输出星期日
   else
       System.out.println("输入的值不正确");//否则其余值,都输出不存在
}
}
-----------------------------------------------------------------------------------------------------------------
public class GOOD{
   public static void main(String[]args){
   int x = 13;                   //赋值给x
   if (x>12||x<1)                //如果输入1-12月以外的数字,显示不正确
   System.out.println( "输入不正确");
   else if (x>=3&&x<=5)          //如果为3-5之间,输出春天
   System.out.println(x+"春天");
   else if (x>=6&&x<=8)          //如果为6-8之间,输出夏天
   System.out.println(x+"夏天");
   else if (x>=9&&x<=11)         //如果为9-11之间,输出秋天
   System.out.println(x+"秋天");
   else                          //否则为冬天
   System.out.println(x+"冬天");
   }
}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2