標題:
011_輸贏判斷
[打印本頁]
作者:
游東祥
時間:
2015-4-25 11:50
標題:
011_輸贏判斷
宣告兩個變數來存放兩隊的比賽成績比較兩隊的成績,如果 A 隊分數較高,則顯示 "A 隊獲勝",否則如果 B 隊分數較高,則顯示 "B 隊獲勝",否則顯示"平手"
請輸入 A 隊分數:10
請輸入 B 隊分數:5
A 隊獲勝
請按任意鍵繼續...
請輸入 A 隊分數:3
請輸入 B 隊分數:6
B 隊獲勝
請按任意鍵繼續...
請輸入 A 隊分數:4
請輸入 B 隊分數:4
平手
複製代碼
作者:
王翔
時間:
2015-4-25 12:00
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
while(true)
{
int a;
int b;
cout<<"請輸入 A 隊分數:";
cin>> a;
cout<<"請輸入 B 隊分數:";
cin>> b;
if(a > b)
{
cout<<"A 隊獲勝"<<endl;
}
else if (b > a)
{
cout<<"B 隊獲勝"<<endl;
}
else
{
cout <<"平手"<<endl;
}
system ("pause");
}
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-4-25 12:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
while (true)
{
int a;
int b;
cout<<"請輸入 A 隊分數:";
cin>>a;
cout<<"請輸入 B 隊分數:";
cin>>b;
if (a>b)
{
cout<<"A 隊獲勝"<<endl;
}
else if (a<b)
{
cout<<"B 隊獲勝"<<endl;
}
else
{
cout<<"平手"<<endl;
}
system ("pause");
}
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-4-25 12:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
while(true)
{
int a;
int b;
cout << "請輸入 A 隊分數:";
cin >> a;
cout << "請輸入 B 隊分數:";
cin >> b;
if (a>b)
{
cout << "A隊獲勝" << endl;
}
else if (b>a)
{
cout << "B隊獲勝" << endl;
}
else
{
cout << "平手" << endl;
}
}
return 0;
}
複製代碼
作者:
林廷翰
時間:
2015-4-25 12:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
while(true)
{
int a;
int b;
cout<<"請輸入A隊分數 :";
cin>>a;
cout<<"請輸入b隊分數 :";
cin>>b;
if( a > b )
{
cout<<"A 隊獲勝"<<endl;
}
else if (b>a)
{
cout<<"b 隊獲勝"<<endl;
}
else
{
cout<<"平手"<<endl;
}
system("pause");
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2