標題:
[隨堂測驗] 生肖判斷
[打印本頁]
作者:
方浩葦
時間:
2024-8-17 11:42
標題:
[隨堂測驗] 生肖判斷
請設計一程式,
能根據使用者輸入的西元年,回報該年是哪個生肖。
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-9-21 11:29
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int y;
const char* n[12]={"侯","雞","狗","豬","鼠","牛","虎","兔","龍","蛇","馬","羊"};
cout<<"請輸入西元年:";
cin>>y;
cout<<"是"<<n[y%12]<<"年";
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2