herrDeng網內搜尋

自訂搜尋

Ads

2016年10月7日 星期五

ex6 輸入生日輸出NASA公佈的十三星座



NASA認為現在的天宮圖與3000年前不同,現在的地球軸心位置改變,星座也發生移位,所以他們決定加入「蛇夫座」。


但消息傳出後,引起星座迷討論,時尚雜誌《Cosmopolitan》稱NASA重新改寫了星座曆,指NASA把人們遺忘的第13個星座「蛇夫座」翻出。
不過NASA強調,因為地球軸心變動,12星座已經改變,但原本的星座並沒有錯,而且他們研究的是天文學,和占星學無關,占星不是科學也不是天文學,他們並沒有改變星座圖的任何內容,僅僅是做數學演算,所以12星座還是12星座。

圖取自NASA tumblr網頁

《COSMOPOLITAN》雜誌中報導,有關13個星座的分佈:
魔羯座: 1月21日 – 2月16日
水瓶座: 2月17日 – 3月11日
雙魚座: 3月12日– 4月18日
白羊座: 4月19日 – 5月13日
金牛座: 5月14日 – 6月21日
雙子座: 6月22日 – 7月20日
巨蟹座: 7月21日 – 8月10日
獅子座: 8月11日 – 9月15日
處女座: 9月16日 – 10月30日
天秤座: 10月31日 – 11月23日
天蠍座: 11月24日 – 11月29日
蛇夫座: 11月30日– 12月17日
人馬座: 12月18日 – 1月20日

資料來源:http://news.ltn.com.tw/news/life/breakingnews/1842639

17 則留言:

a10533001 提到...

import java.util.Scanner;

public class a10533001 {

public static void main(String[] args) {
Scanner x=new Scanner(System.in);
int m;
int d;
System.out.println("請輸入月份");
m=x.nextInt();
System.out.println("請輸入日期");
d=x.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16))
System.out.println("摩羯座");
else if((m==2&&d>=17)||(m==3&&d<=11))
System.out.println("水瓶座");
else if((m==3&&d>=12)||(m==4&&d<=18))
System.out.println("雙魚座");
else if((m==4&&d>=19)||(m==5&&d<=13))
System.out.println("白羊座");
else if((m==5&&d>=14)||(m==6&&d<=21))
System.out.println("金牛座");
else if((m==6&&d>=22)||(m==7&&d<=20))
System.out.println("雙子座");
else if((m==7&&d>=21)||(m==8&&d<=10))
System.out.println("巨蟹座");
else if((m==8&&d>=11)||(m==9&&d<=15))
System.out.println("獅子座");
else if((m==9&&d>=16)||(m==10&&d<=30))
System.out.println("處女座");
else if((m==10&&d>=31)||(m==11&&d<=23))
System.out.println("天秤座");
else if((m==11&&d>=24)||(m==11&&d<=29))
System.out.println("天蠍座");
else if((m==11&&d>=30)||(m==12&&d<=17))
System.out.println("蛇夫座");
else
System.out.println("人馬座");
}

}

A10533011 提到...

import java.util.*;
public class A10533011 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int m,d;
System.out.println("請輸入月份");
m=scan.nextInt();
System.out.println("請輸入日期");
d=scan.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16)){
System.out.println("摩羯座");
}
else if((m==2&&d>=17)||(m==3&&d<=11)){
System.out.println("水瓶座");
}
else if((m==3&&d>=12)||(m==4&&d<=18)){
System.out.println("雙魚座");
}
else if((m==4&&d>=19)||(m==5&&d<=13)){
System.out.println("白羊座");
}
else if((m==5&&d>=14)||(m==6&&d<=21)){
System.out.println("金牛座");
}
else if((m==6&&d>=22)||(m==7&&d<=20)){
System.out.println("雙子座");
}
else if((m==7&&d>=21)||(m==8&&d<=10)){
System.out.println("巨蟹座");
}
else if((m==8&&d>=11)||(m==9&&d<=15)){
System.out.println("獅子座");
}
else if((m==9&&d>=16)||(m==10&&d<=30)){
System.out.println("處女座");
}
else if((m==10&&d>=31)||(m==11&&d<=23)){
System.out.println("天秤座");
}
else if((m==11&&d>=24)||(m==11&&d<=29)){
System.out.println("天蠍座");
}
else if((m==11&&d>=30)||(m==12&&d<=17)){
System.out.println("蛇夫座");
}
else{
System.out.println("人馬座");
}
}
}

A10533012 提到...

import java.util.*;

public class ex1 {

public static void main(String[] args) {
int m; int d;
Scanner x=new Scanner(System.in);
System.out.println("請輸入月份");
m=x.nextInt();
System.out.println("請輸入日期");
d=x.nextInt();


if((m==1&&d>=21)||(m==2&&d<=16)){
System.out.println("摩羯座");}
else if((m==2&&d>=17)||(m==3&&d<=11)){
System.out.println("水瓶座");}
else if((m==3&&d>=12)||(m==4&&d<=18)){
System.out.println("雙魚座");}
else if((m==4&&d>=19)||(m==5&&d<=13)){
System.out.println("白羊座");}
else if((m==5&&d>=14)||(m==6&&d<=21)){
System.out.println("金牛座");}
else if((m==6&&d>=22)||(m==7&&d<=20)){
System.out.println("雙子座");}
else if((m==7&&d>=20)||(m==8&&d<=20)){
System.out.println("巨蟹座");}
else if((m==8&&d>=1)||(m==9&&d<=16)){
System.out.println("獅子座");}
else if((m==9&&d>=16)||(m==10&&d<=30)){
System.out.println("處女座");}
else if((m==10&&d>=31)||(m==11&&d<=23)){
System.out.println("天秤座");}
else if((m==11&&d>=24)||(m==11&&d<=29)){
System.out.println("天蠍座");}
else if((m==11&&d>=30)||(m==1&&d<=17)){
System.out.println("蛇夫座");}
else{
System.out.println("人馬座");}

}

}

A10533006林柏宇 提到...

import java.util.*;
public class ex6 {

public static void main(String[] args) {
int m=0 ; int d=0 ;
Scanner x=new Scanner(System.in);
System.out.println("輸入月份");
m=x.nextInt();
System.out.println("輸入日期");
d=x.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16)){
System.out.println("魔羯座");}
else if((m==2&&d>=17)||(m==3&&d<=11)){
System.out.println("水瓶座");}
else if((m==3&&d>=12)||(m==4&&d<=18)){
System.out.println("雙魚座");}
else if((m==4&&d>=19)||(m==5&&d<=13)){
System.out.println("白羊座");}
else if((m==5&&d>=14)||(m==6&&d<=21)){
System.out.println("金牛座");}
else if((m==6&&d>=22)||(m==7&&d<=20)){
System.out.println("雙子座");}
else if((m==7&&d>=21)||(m==8&&d<=10)){
System.out.println("巨蟹座");}
else if((m==8&&d>=11)||(m==9&&d<=16)){
System.out.println("獅子座");}
else if((m==9&&d>=16)||(m==10&&d<=30)){
System.out.println("處女座");}
else if((m==10&&d>=31)||(m==11&&d<=23)){
System.out.println("天秤座");}
else if((m==11&&d>=24)||(m==11&&d<=29)){
System.out.println("天蠍座");}
else if((m==11&&d>=30)||(m==12&&d<=17)){
System.out.println("蛇夫座");}
else {
System.out.println("人馬座");}
}
}

A10533002 提到...

import java.util.Scanner;

public class ex {

public static void main(String[] args) {
Scanner aaa=new Scanner(System.in);
System.out.print("請輸入月份");
int m=aaa.nextInt();
System.out.print("請輸入日期");
int d=aaa.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16))
System.out.print("摩羯座");
else if((m==2&&d>=17)||(m==3&&d<=11))
System.out.print("水瓶座");
else if((m==3&&d>=12)||(m==4&&d<=18))
System.out.print("雙魚座");
else if((m==4&&d>=19)||(m==5&&d<=13))
System.out.print("白羊座");
else if((m==5&&d>=14)||(m==6&&d<=21))
System.out.print("金牛座");
else if((m==6&&d>=22)||(m==7&&d<=19))
System.out.print("雙子座");
else if((m==7&&d>=20)||(m==8&&d<=10))
System.out.print("巨蟹座");
else if((m==8&&d>=11)||(m==9&&d<=15))
System.out.print("獅子座");
else if((m==9&&d>=16)||(m==10&&d<=23))
System.out.print("處女座");
else if((m==10&&d>=24)||(m==11&&d<=29))
System.out.print("天秤座");
else if((m==11&&d>=30)||(m==12&&d<=17))
System.out.print("天蠍座");
else if((m==12&&d>=18)||(m==1&&d<=20))
System.out.print("蛇夫座");
else
System.out.print("人馬座");

A10533009 提到...

import java.util.*;
public class a {

public static void main (String[] args) {
int m ; int d ;
Scanner x=new Scanner (System.in);
System.out.println("輸入月份");
m=x.nextInt();
System.out.println("輸入日期");
d=x.nextInt();

if((m==1&&d>=21)||(m==2&&d<16)){
System.out.println("摩羯座");}
else if((m==2&&d>=17)||(m==3&&d<11)){
System.out.println("水瓶座");}
else if((m==3&&d>=12)||(m==4&&d<18)){
System.out.println("雙魚座");}
else if((m==4&&d>=19)||(m==5&&d<13)){
System.out.println("白羊座");}
else if((m==5&&d>=14)||(m==6&&d<21)){
System.out.println("金牛座");}
else if((m==6&&d>=22)||(m==7&&d<20)){
System.out.println("雙子座");}
else if((m==7&&d>=20)||(m==8&&d<10)){
System.out.println("巨蟹座");}
else if((m==8&&d>=11)||(m==9&&d<16)){
System.out.println("獅子座");}
else if((m==9&&d>=16)||(m==10&&d<30)){
System.out.println("處女座");}
else if((m==10&&d>=31)||(m==11&&d<23)){
System.out.println("天秤座");}
else if((m==11&&d>=24)||(m==11&&d<29)){
System.out.println("天蠍座");}
else if((m==11&&d>=30)||(m==12&&d<17)){
System.out.println("摩羯座");}
else {
System.out.println("人馬座");}

}
}

A10533005 提到...

import java.util.Scanner;

public class wx6 {

public static void main(String[] args) {
Scanner aaa=new Scanner(System.in);
System.out.println("請輸入月份:");
int m =aaa.nextInt();
System.out.println("請輸入日期:");
int d =aaa.nextInt();

if((m==1 && d>=21)||(m==2 && d<=16)){
System.out.println("摩羯座");
}
else if((m==2 && d>=17)||(m==3 && d<=11)){
System.out.println("水瓶座");
}
else if((m==3 && d>=12)||(m==4 && d<=18)){
System.out.println("雙魚座");
}
else if((m==4 && d>=19)||(m==5 && d<=13)){
System.out.println("白羊座");
}
else if((m==5 && d>=14)||(m==6 && d<=21)){
System.out.println("金牛座");
}
else if((m==6 && d>=22)||(m==7 && d<=20)){
System.out.println("雙子座");
}
else if((m==7 && d>=21)||(m==8 && d<=10)){
System.out.println("巨蟹座");
}
else if((m==8 && d>=11)||(m==9 && d<=15)){
System.out.println("獅子座");
}
else if((m==9 && d>=16)||(m==10 && d<=30)){
System.out.println("處女座");
}
else if((m==10 && d>=31)||(m==11 && d<=23)){
System.out.println("天秤座");
}
else if((m==11 && d>=24)||(m==11 && d<=29)){
System.out.println("天蠍座");
}
else if((m==12 && d>=30)||(m==12 && d<=17)){
System.out.println("蛇夫座");
}
else
System.out.println("人馬座");
}

}

A10533004易廷軒 提到...

import java.util.*;
public class ex1 {

public static void main(String[] args) {
int m=0,d=0;
Scanner x=new Scanner(System.in);
System.out.println("輸入月份");
m=x.nextInt();
System.out.println("輸入日期");
d=x.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16)){
System.out.println("魔羯座");}
else if((m==2&&d>=17)||(m==03&&d<=11)){
System.out.println("水瓶座");}
else if((m==3&&d>=12)||(m==4&&d<=18)){
System.out.println("雙魚座");}
else if((m==4&&d>=19)||(m==5&&d<=13)){
System.out.println("白羊座");}
else if((m==5&&d>=14)||(m==6&&d<=21)){
System.out.println("金牛座");}
else if((m==6&&d>=22)||(m==7&&d<=20)){
System.out.println("雙子座");}
else if((m==7&&d>=20)||(m==8&&d<=10)){
System.out.println("巨蠍座");}
else if((m==8&&d>=11)||(m==9&&d<=16)){
System.out.println("獅子座");}
else if((m==9&&d>=16)||(m==10&&d<=30)){
System.out.println("處女座");}
else if((m==10&&d>=31)||(m==11&&d<=23)){
System.out.println("天秤座");}
else if((m==11&&d>=24)||(m==11&&d<=29)){
System.out.println("天蠍座");}
else if((m==11&&d>=30)||(m==12&&d<=17)){
System.out.println("蛇夫座");}
else {
System.out.println("人馬座");}


}
}

A10533016 提到...

import java.util.Scanner;

public class susu {

public static void main(String[] args) {
Scanner aaa=new Scanner(System.in);
System.out.print("請輸入月份");
int m=aaa.nextInt();
System.out.print("請輸入日期");
int d=aaa.nextInt() ;
if((m==1&&d>=21)||(m==2&&d<=16))
System.out.println("摩羯座");
else if((m==2&&d>=17)||(m==3&&d<=11))
System.out.println("水瓶座");
else if((m==3&&d>=12)||(m==4&&d<=18))
System.out.println("雙魚座");
else if((m==4&&d>=19)||(m==5&&d<=13))
System.out.println("白羊座");
else if((m==5&&d>=14)||(m==6&&d<=21))
System.out.println("金牛座");
else if((m==6&&d>=22)||(m==7&&d<=19))
System.out.println("雙子座");
else if((m==7&&d>20)||(m==8&&d<=10))
System.out.println("巨蟹座");
else if((m==8&&d>=11)||(m==9&&d<=15))
System.out.println("獅子座");
else if((m==9&&d>=16)||(m==10&&d<=30))
System.out.println("處女座");
else if((m==10&&d>=31)||(m==11&&d<=23))
System.out.println("天秤座");
else if((m==11&&d>=24)||(m==11&&d<=29))
System.out.println("天蠍座");
else if((m==11&&d>=30)||(m==12&&d<=17))
System.out.println("蛇夫座");
else
System.out.println("人馬座");

A10533014 提到...

import java.util.*;
public class xing {

public static void main(String[] args) {
int m=0;
int d=0;
Scanner x=new Scanner(System.in);
System.out.println("輸入月份");
m=x.nextInt();
System.out.println("輸入日期");
d=x.nextInt();

if ((m==1&&d>=21)||(m==2&d<=16)){
System.out.println("魔羯座");}
else if ((m==2&&d>=17)||(m==3&&d<=11)){
System.out.println("水瓶座");}
else if ((m==3&&d>=12)||(m==4&&d<=18)){
System.out.println("雙魚座");}
else if ((m==4&&d>=19)||(m==5&&d<=13)){
System.out.println("白羊座");}
else if ((m==5&&d>=14)||(m==6&&d<=21)){
System.out.println("金牛座");}
else if ((m==6&&d>=22)||(m==7&&d<=20)){
System.out.println("雙子座");}
else if ((m==7&&d>=20)||(m==8&&d<=10)){
System.out.println("巨蟹座");}
else if ((m==8&&d>=11)||(m==9&&d<=16)){
System.out.println("獅子座");}
else if ((m==9&&d>=16)||(m==10&&d<=30)){
System.out.println("處女座");}
else if ((m==10&&d>=31)||(m==11&&d<=23)){
System.out.println("天秤座");}
else if ((m==11&&d>=24)||(m==11&&d<=29)){
System.out.println("天蠍座");}
else if ((m==11&&d>=31)||(m==12&&d<=17)){
System.out.println("蛇夫座");}
else if ((m==12&&d>=18)||(m==1&&d<=20)){
System.out.println("人馬座");}

}

}

A10533003 提到...

import java.util.*;
public class szdfi {
public static void main(String[] args) {
int m=0;
int d=0;
Scanner x=new Scanner(System.in);
System.out.println("輸入月份");
m=x.nextInt();
System.out.println("輸入日期");
d=x.nextInt();
if ((m==1&&d>=21)||(m==2&d<=16)){
System.out.println("魔羯座");}
else if ((m==2&&d>=17)||(m==3&&d<=11)){
System.out.println("水瓶座");}
else if ((m==3&&d>=12)||(m==4&&d<=18)){
System.out.println("雙魚座");}
else if ((m==4&&d>=19)||(m==5&&d<=13)){
System.out.println("白羊座");}
else if ((m==5&&d>=14)||(m==6&&d<=21)){
System.out.println("金牛座");}
else if ((m==6&&d>=22)||(m==7&&d<=20)){
System.out.println("雙子座");}
else if ((m==7&&d>=20)||(m==8&&d<=10)){
System.out.println("巨蟹座");}
else if ((m==8&&d>=11)||(m==9&&d<=16)){
System.out.println("獅子座");}
else if ((m==9&&d>=16)||(m==10&&d<=30)){
System.out.println("處女座");}
else if ((m==10&&d>=31)||(m==11&&d<=23)){
System.out.println("天秤座");}
else if ((m==11&&d>=24)||(m==11&&d<=29)){
System.out.println("天蠍座");}
else if ((m==11&&d>=31)||(m==12&&d<=17)){
System.out.println("蛇夫座");}
else if ((m==12&&d>=18)||(m==1&&d<=20)){
System.out.println("人馬座");}
}
}

A10533013 提到...

import java.util.Scanner;

public class ex1 {

public static void main(String[] args) {
Scanner x=new Scanner(System.in);
int m;int d;
System.out.println("請輸入月份");
m=x.nextInt();
System.out.println("請輸入日期");
d=x.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16))
System.out.println("摩羯座");
else if((m==2&&d>=17)||(m==3&&d<=11))
System.out.println("水瓶座");
else if((m==3&&d>=12)||(m==4&&d<=18))
System.out.println("雙魚座");
else if((m==4&&d>=19)||(m==5&&d<=13))
System.out.println("白羊座");
else if((m==5&&d>=14)||(m==6&&d<=21))
System.out.println("金牛座");
else if((m==6&&d>=22)||(m==7&&d<=20))
System.out.println("雙子座");
else if((m==7&&d>=21)||(m==8&&d<=10))
System.out.println("巨蠍座");
else if((m==8&&d>=11)||(m==9&&d<=16))
System.out.println("獅子座");
else if((m==9&&d>=17)||(m==10&&d<=30))
System.out.println("處女座");
else if((m==10&&d>=31)||(m==11&&d<=23))
System.out.println("天秤座");
else if((m==11&&d>=24)||(m==11&&d<=29))
System.out.println("天蠍座");
else if((m==11&&d>=30)||(m==12&&d<=17))
System.out.println("蛇夫座");
else
System.out.println("人馬座");
}
}

A10533002 提到...

import java.util.Scanner;

public class ex {

public static void main(String[] args) {
Scanner aaa=new Scanner(System.in);
System.out.print("請輸入月份");
int m=aaa.nextInt();
System.out.print("請輸入日期");
int d=aaa.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16))
System.out.print("摩羯座");
else if((m==2&&d>=17)||(m==3&&d<=11))
System.out.print("水瓶座");
else if((m==3&&d>=12)||(m==4&&d<=18))
System.out.print("雙魚座");
else if((m==4&&d>=19)||(m==5&&d<=13))
System.out.print("白羊座");
else if((m==5&&d>=14)||(m==6&&d<=21))
System.out.print("金牛座");
else if((m==6&&d>=22)||(m==7&&d<=19))
System.out.print("雙子座");
else if((m==7&&d>=20)||(m==8&&d<=10))
System.out.print("巨蟹座");
else if((m==8&&d>=11)||(m==9&&d<=15))
System.out.print("獅子座");
else if((m==9&&d>=16)||(m==10&&d<=30))
System.out.print("處女座");
else if((m==10&&d>=31)||(m==11&&d<=23))
System.out.print("天秤座");
else if((m==11&&d>=24)||(m==1&&d<=29))
System.out.print("天蠍座");
else if((m==11&&d>=30)||(m==12&&d<=17))
System.out.print("蛇夫座");
else
System.out.print("人馬座");

A10533010 提到...

import java.util.*;

public class ex1 {

public static void main(String[] args) {
Scanner x=new Scanner(System.in);
int m; int d;
System.out.println("請輸入月份");
m=x.nextInt();
System.out.println("請入日期");
d=x.nextInt();
if((m==1&&d>=21)||(m==2&&d<=16))
System.out.println("摩羯座");
else if((m==2&&d>=17)||(m==3&&d<=11))
System.out.println("水瓶座");
else if((m==3&&d>=12)||(m==4&&d<=18))
System.out.println("雙魚座");
else if((m==4&&d>=19)||(m==5&&d<=13))
System.out.println("白羊座");
else if((m==5&&d>=14)||(m==6&&d<=21))
System.out.println("金牛座");
else if((m==6&&d>=22)||(m==7&&d<=20))
System.out.println("雙子座");
else if((m==7&&d>=20)||(m==8&&d<=10))
System.out.println("巨蟹座");
else if((m==8&&d>=11)||(m==9&&d<=16))
System.out.println("獅子座");
else if((m==9&&d>=16)||(m==10&&d<=30))
System.out.println("處女座");
else if((m==10&&d>=31)||(m==11&&d<=23))
System.out.println("天秤座");
else if((m==11&&d>=24)||(m==11&&d<=29))
System.out.println("天蠍座");
else if((m==11&&d>=30)||(m==12&&d<=17))
System.out.println("蛇夫座");
else
System.out.println("人馬座");

}

}

A10533007 提到...

import java.util.*;
public class LOVEE {

public static void main(String[] args) {
int m=0,d=0;
Scanner x=new Scanner(System.in);
System.out.println("輸入月份");
m=x.nextInt();
System.out.println("輸入日期");
d=x.nextInt();

if ((m==1&&d>=21)||(m==2&d<=16)){
System.out.println("魔羯座");}

else if ((m==2&&d>=17)||(m==3&&d<=11)){
System.out.println("水瓶座");}

else if ((m==3&&d>=12)||(m==4&&d<=18)){
System.out.println("雙魚座");}

else if ((m==4&&d>=19)||(m==5&&d<=13)){
System.out.println("白羊座");}

else if ((m==5&&d>=14)||(m==6&&d<=21)){
System.out.println("金牛座");}

else if ((m==6&&d>=22)||(m==7&&d<=20)){
System.out.println("雙子座");}

else if ((m==7&&d>=20)||(m==8&&d<=10)){
System.out.println("巨蟹座");}

else if ((m==8&&d>=11)||(m==9&&d<=16)){
System.out.println("獅子座");}

else if ((m==9&&d>=16)||(m==10&&d<=30)){
System.out.println("處女座");}

else if ((m==10&&d>=31)||(m==11&&d<=23)){
System.out.println("天秤座");}

else if ((m==11&&d>=24)||(m==11&&d<=29)){
System.out.println("天蠍座");}

else if ((m==11&&d>=31)||(m==12&&d<=17)){
System.out.println("蛇夫座");}

else if ((m==12&&d>=18)||(m==1&&d<=20)){
System.out.println("人馬座");}


}

}

B10433107袁婕寧 提到...

switch (m) {
case 1 :
if (day < 121) n = 13;
else n = 1;
break;
case 2 :
if (day < 217) n = 1;
else n = 2;
break;
case 3 :
if (day < 312) n = 2;
else n = 3;
break;

case 4 :
if (day < 419) n = 3;
else n = 4;
break;

case 5 :
if (day < 514) n = 4;
else n = 5;
break;

case 6 :
if (day < 622)n = 5;
else n = 6;
break;

case 7 :
if (day < 721) n = 6;
else n = 7;
break;

case 8 :
if (day < 811) n = 7;
else n = 8;
break;

case 9 :
if (day < 916) n = 8;
else n = 9;
break;

case 10 :
if (day < 1031) n = 9;
else n = 10;
break;

case 11 :
if (day < 1124) n = 10;
else if(day < 1130) n = 11;
else n = 12;
break;

case 12 :
if (day < 1218) n = 11;
else n = 12;
break;


default :
n = 0;
}
cout<<hor[n]<<endl;
return 0;
}

B10433099駱婉婷 提到...

switch (m) {
case 1 :
if (day < 121) n = 13;
else n = 1;
break;
case 2 :
if (day < 217) n = 1;
else n = 2;
break;
case 3 :
if (day < 312) n = 2;
else n = 3;
break;

case 4 :
if (day < 419) n = 3;
else n = 4;
break;

case 5 :
if (day < 514) n = 4;
else n = 5;
break;

case 6 :
if (day < 622)n = 5;
else n = 6;
break;

case 7 :
if (day < 721) n = 6;
else n = 7;
break;

case 8 :
if (day < 811) n = 7;
else n = 8;
break;

case 9 :
if (day < 916) n = 8;
else n = 9;
break;

case 10 :
if (day < 1031) n = 9;
else n = 10;
break;

case 11 :
if (day < 1124) n = 10;
else if(day < 1130) n = 11;
else n = 12;
break;

case 12 :
if (day < 1218) n = 11;
else n = 12;
break;


default :
n = 0;
}
cout<<hor[n]<<endl;
return 0;

Related Posts Plugin for WordPress, Blogger...

熱門文章