標題:
程式實作: 兩光法師占卜術
[打印本頁]
作者:
tonyh
時間:
2015-8-12 15:20
標題:
程式實作: 兩光法師占卜術
本帖最後由 tonyh 於 2015-8-12 16:29 編輯
兩光法師時常替人占卜,由於他算得又快有便宜,因此生意源源不絕,時常大排長龍,他想算得更快一點,因此找了你這位電腦高手幫他用電腦來加快算命的速度。
他的占卜規則很簡單,規則是這樣的,輸入一個日期,然後依照下面的公式: M=月 D=日 S=(M*2+D)%3 得到 S 的值,再依照 S 的值從 0 到 2 分別給予 "凶"、"普通"、"吉"等三種不同的運勢。
輸入說明 :月份及日期 輸出說明 :運勢
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m,d,s;
cout<<"請輸入生日月份: ";
cin>>m;
cout<<"請輸入生日日期: ";
cin>>d;
s=(m*2+d)%3;
if(s==2)
cout<<"吉!"<<endl;
else if(s==1)
cout<<"普通!"<<endl;
else
cout<<"凶!"<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
顏宇呈
時間:
2015-8-12 15:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m,d,s;
cout<<"請輸入生日月份:";
cin>>m;
cout<<"請輸入生日日期:";
cin>>d;
s=(m*2+d)%3;
if(s==2){
cout<<"大吉"<<endl;
}else if(s==1){
cout<<"吉"<<endl;
}else if(s==0){
cout<<"兇"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
柳晟緯
時間:
2015-8-12 15:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m,d,s;
cout<<"請輸入出生日月份:";
cin>>m;
cout<<"請輸入出生日日期:";
cin>>d;
s=(m*2+d)%3;
if(s==2) {
cout<<"大吉"<<endl;
}else if(s==0){
cout<<"吉"<<endl;
} else {
cout<<"普通"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-8-12 15:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m,d,s;
cout<<"請輸入生日月分:";
cin>>m;
cout<<"請輸入你的生日日期:";
cin>>d;
s=(m*2+d)%3;
if(s==2){
cout<<"大吉"<<endl;
}else if(s==1){
cout<<"吉"<<endl;
}else{
cout<<"普通"<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
鍾帛融
時間:
2015-8-12 15:40
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int m,d,s
cout<<"請輸入生日月份:";
cin>>m;
cout<<"請輸入生日日期:";
cin>>d;
s=(m*2+d)%3;
if(s==2){
cout<<"大吉"<<endl;
}else if(s==1){
cout<<"吉"<<endl;
}else if(s==0){
cout<<"兇"<<endl;
}
system("pause");
return 0;
複製代碼
作者:
陳品蓁
時間:
2015-8-12 15:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m,d,s;
cout<<"請輸入生日月份:";
cin>>m;
cout<<"請輸入生日日期:";
cin>>d;
s=(m*2+d)%3;
if(s==2){
cout<<"大吉"<<endl;
}else if(s==1){
cout<<"吉"<<endl;
}else if(s==0){
cout<<"兇"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林禹彤
時間:
2015-8-12 16:03
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int m,d,s;
cout<<"算算今日的運勢吧!!"<<endl;
cout<<"幾月生呢??!";
cin>>m;
cout<<m<<"月幾號呢??";
cin>>d;
s=(m+d)*365%4;
if(s==3)
{
cout<<"大吉!去買張樂透吧!!"<<endl;
cout<<endl<<endl<<endl<<endl<<endl<<"別再玩了!去讀書吧!"<<endl;
}else if (s==2)
{
cout<<"今天有點帶ㄙㄨㄟ喔!! "<<endl;
cout<<endl<<endl<<endl<<endl<<endl<<"別再玩了!去讀書吧!"<<endl;
}else if (s==0)
{
cout<<"走路要小心點,不然會踩到狗屎喔"<<endl;
cout<<endl<<endl<<endl<<endl<<endl<<"別再玩了!去讀書吧!"<<endl;
}else if(s==1)
{
cout<<"根本人生勝利組!!!"<<endl;
cout<<endl<<endl<<endl<<endl<<endl<<"別再玩了!去讀書吧!"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2