標題:
兩光法師占卜術
[打印本頁]
作者:
游東祥
時間:
2013-8-15 09:33
標題:
兩光法師占卜術
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int m, d, s;
cout << "請輸入生日月份:";
cin >> m;
cout << "請輸入生日日期:";
cin >> d;
s = (m * 2 + d) % 3;
// 0:普通 1:吉 2:大吉
if (s == 2)
{
cout << "大吉" << endl;
}
if (s == 1)
{
cout << "吉" << endl;
}
if (s == 0)
{
cout << "普通" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
薛景謙
時間:
2013-8-15 09:34
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
int m,d,s;
cout << "請輸入生日月份:";
cin >> m;
cout << "請輸入生日日期:";
cin >>d;
s = (m*2+d)%3;
if(s==2)
{
cout << "大吉" <<endl;
}
if(s==1)
{
cout << "吉" <<endl;
}
if(s==0)
{
ciut << "普通" <<endl;
}
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
複製代碼
作者:
蘇昱安
時間:
2013-8-15 09:34
#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;
}
if(s==1)
{
cout<<"吉"<<endl;
}
if(s==0)
{
cout<<"普及"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡秉修
時間:
2013-8-15 09:36
#include <iostream>
#include <cstdlib>
using naqmespace std; int main()
{
int m,d,s;
cout<<"請輸入生日月份:";
cin>>m;
cout<<"請輸入生日日期:";
cin>>d;
s = (m*2+d)%3;
if(s==2)
{
cout<<"大吉"<<endl;
}
if(s==1)
{
cout<<"吉"<<endl;
}
if(s==0)
{
cout<<"普通"<<endl;
}
system("pause");
reurn 0;
}
複製代碼
作者:
陳國蘢
時間:
2013-8-15 09: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;
if(s==1 )
cout<<"吉"<<endl;
if(s==0)
cout<<"普通"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-8-15 09: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;
}
if(s==1)
{
cout<<"吉"<<endl;
}
if(s==0)
{
cout<<"普通"<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
徐義翔
時間:
2013-8-15 09: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 << "上上" <<eddl;
if(s==1)
cout << "上" <<eddl;
if(s==0)
cout << "中" <<eddl;
system("pause");
return 0;
}
複製代碼
作者:
柯璟廷
時間:
2013-8-15 09: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;
if(s==1)
cout<<"吉"<<endl;
if(s==0)
cout<<"普通"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-8-15 09: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;
if (s==1)
cout << "吉" <<endl;
if (s==0)
cout << "普通" <<endl;
system ("pause");
return 0;
}
複製代碼
作者:
陳寧莉
時間:
2013-8-15 09:39
#include <iostream> //引入輸出.入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名
int main() //程式從"main"執行
{
int m, d, s;
cout<<"請輸入生日月份:";
cin>>m;
cout<<"請輸入生日日期:";
cin>>d;
s =(m*2+d)%3;
if (s == 2)
{
cout <<"喵吉"<<endl;
}
if (s == 1)
{
cout <<"吉"<<endl;
}
if (s == 0)
{
cout <<"衰小"<<endl;
}
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
}
複製代碼
作者:
張彥承
時間:
2013-8-15 09:40
#include<iostream>
#include<cstdlib>
using namespace std ;
int main()
{
int m, d, s;
cout<<"enter yourbirthday month:";
cin >>m;
cout<<"enter your birthday day:";
cin>>d;
s=(m*2+d)%3;
if(s==2)
cout<<"good fortune"<<endl;
if(s==1)
cout<<"good luck"<<endl;
if(s==0)
cout<<"normal"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-8-15 09:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
start:
int m,d,s;
string p[]={"普通","吉","大吉"};
cout<<"請輸入生日月份:"<<endl;
cin>>m;
cout<<"請輸入生日日期:"<<endl;
cin>>d;
s=(m*2+d)%3;
if(m<13 && d<31)
{
cout<<p[s]<<endl;
}else
{
cout<<"錯誤,重新輸入"<<endl;
goto start;
}
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-8-15 09:40
#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;
}
if (s == 1)
{
cout << "吉" <<endl;
}
if (s == 0)
{
cout << "普通" <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-8-15 09: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;
}
if(s==1)
{
cout<<"吉"<<endl;
}
if(s==0)
{
cout<<"普通"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-8-15 09:42
#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;
if(s==1)
cout<<"吉"<< endl;
if(s==0)
cout<<"普通"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳宗桓
時間:
2013-8-15 09:42
#include <iostream> //引入輸出輸入指令
#include <cstdlib> //引入c的語言 的標準函式
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;
}
if(s==1)
{
cout<<"吉"<<endl;
}
if (s==0)
{
cout<<"普通"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡凱益
時間:
2013-8-15 09:43
#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;
}
if(s==1)
{
cout<<"吉"<<endl;
}
if(s==0)
{
cout<<"普通"<<endl;
}
system("pause;");
return 0;
}
複製代碼
作者:
李恆
時間:
2013-8-15 09:47
#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;
if(s==1) cout<<"吉"<<endl;
if(s==0) cout<<"普通"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2