- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int x, y;
- srand(time(NULL));
- x=rand()%6+1;
- cout<<"小恒的擲骰子遊戲 v1.0"<<endl;
- cout<<"電腦擲出的點數為"<<x<<"點!"<<endl;
- cout<<"輪到你擲了..."<<endl;
- system("pause");
- y=rand()%6+1;
- cout<<"你擲出的點數為"<<y<<"點!"<<endl;
- if(x>y)
- {
- cout<<"哎呀! 你輸了!"<<endl;
- }else if(y>x)
- {
- cout<<"恭喜! 你贏了!"<<endl;
- }else
- {
- cout<<"平手!"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |