1132:石头剪子布
生活随笔
收集整理的這篇文章主要介紹了
1132:石头剪子布
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
時間限制: 1000 ms 內存限制: 65536 KB
提交數: 9833 通過數: 5176
【題目描述】
石頭剪子布,是一種猜拳游戲。起源于中國,然后傳到日本、朝鮮等地,隨著亞歐貿易的不斷發展它傳到了歐洲,到了近現代逐漸風靡世界。簡單明了的規則,使得石頭剪子布沒有任何規則漏洞可鉆,單次玩法比拼運氣,多回合玩法比拼心理博弈,使得石頭剪子布這個古老的游戲同時用于“意外”與“技術”兩種特性,深受世界人民喜愛。
游戲規則:石頭打剪刀,布包石頭,剪刀剪布。
現在,需要你寫一個程序來判斷石頭剪子布游戲的結果。
【輸入】
第一行是一個整數N,表示一共進行了N次游戲。1 ≤ N ≤ 100。
接下來N行的每一行包括兩個字符串,表示游戲參與者Player1,Player2的選擇(石頭、剪子或者是布):
S1 S2
字符串之間以空格隔開S1,S2只可能取值在{“Rock”, “Scissors”, “Paper”}(大小寫敏感)中。
【輸出】
輸出包括N行,每一行對應一個勝利者(Player1或者Player2),或者游戲出現平局,則輸出Tie。
【輸入樣例】
3
Rock Scissors
Paper Paper
Rock Paper
【輸出樣例】
Player1
Tie
Player2
【來源】
No
code
/*^....0^ .1 ^1^.. 011.^ 1.0^ 1 ^ ^0.11 ^ ^..^0. ^ 0^.0 1 .^.1 ^0 .........001^.1 1. .111100....01^00 ^ 11^ ^1. .1^1.^ ^0 0^.^ ^0..1.1 1..^1 .0 ^ ^^ 00. ^^0.^1 ^ 0 ^^110.^0. 0 ^ ^^^10.01^^ 010^ 1 1 ^^^1110.10001 10 0 ^ 1.1 ^^^11111100^ 10 . 01 ^^ ^^ ^^^1111^1.^ ^^^10 10^ 0^ ^^111^^^0.1^ 1....^11 0 ^^11^^^ 0.. ....1^ ^ ^1. 0^ ^11^^^ ^ 1 111^ ^ 0.10 00 11 ^^^^^ 1 0 1.0^ ^0 ^0 ^^^^ 0 0.0^ 1.0 .^ ^^^^ 1 1 .0^.^ ^^ 0^ ^1 ^^^^ 0. ^.11 ^ 11 1. ^^^ ^ ^ ..^^..^ ^1 ^.^ ^^^ .0 ^.00..^ ^0 01 ^^^ .. 0..^1 .. .1 ^.^ ^^^ 1 ^ ^0001^ 1. 00 0. ^^^ ^.0 ^.1. 0^. ^.^ ^.^ ^^^ ..0.01 .^^. .^ 1001 ^^ ^^^ . 1^. ^ ^. 11 0. 1 ^ ^^ 0.0 ^. 0 ^0 1 ^^^ 0.0.^ 1. 0^ 0 .1 ^^^ ...1 1. 00 . .1 ^^^ ..1 1. ^. 0 .^ ^^ ..0. 1. .^ . 0 ..1 1. 01 . . ^ 0^.^ 00 ^0 1. ^ 1 1.0 00 . ^^^^^^ ..^ 00 01 ..1. 00 10 1 ^^.1 00 ^. ^^^ .1.. 00 .1 1..01 ..1.1 00 1. ..^ 10^ 1^ 00 ^.1 0 1 1.1 00 00 ^ 1 ^. 00 ^.^ 10^ ^^1.1 00 00 10^..^ 1. ^. 1.0 1 ^. 00 00 .^^ ^. ^ 1 00 ^0000^ ^ 011 0 ^. 00.0^ ^00000 1.00.1 11. 1 0 1^^0.01 ^^^ 01.^ ^ 1 1^^ ^.^1 1 0... 1 ^1 1^ ^ .01 ^ 1.. 1.1 ^0.0^ 0 1..01^^100000..0^1 1 ^ 1 ^^1111^ ^^0 ^ ^ 1 1000^.1 ^.^ . 00.. 1.1 0. 01. . 1. .^1. 1 1. ^0^ . ^.1 00 01^.0 001. .^*/ // An_all_in_one_book_on_Informatics —— 1132.cpp created by VB_KoKing on 2019,04,28,12. /* Procedural objectives: 石頭剪刀布Procedural thinking:1.讀入數字n2.循環讀入每局雙方玩家的選擇Functions required by the program:1.判斷勝負的函數judge(),需要傳入兩個字符串,int類型,返回值:0——平局,1——玩家1勝,2代表玩家2勝。Variables required by the program:1.字符串數組str[100]2.變量n */ /* My dear Max said: "I like you, So the first bunch of sunshine I saw in the morning is you, The first hurricane that passed through your ear is you, The first star you see is also you. The world I see is all your shadow."FIGHTING FOR OUR FUTURE!!! */ #include <iostream> #include <string> using namespace std; int check(string str1,string str2) {if (str1==str2) return 0;if (str1=="Rock"){if (str2=="Scissors") return 1;if (str2=="Paper") return 2;}if (str1=="Scissors"){if (str2=="Paper") return 1;if (str2=="Rock") return 2;}if (str1=="Paper"){if (str2=="Rock") return 1;if (str2=="Scissors") return 2;} } int main() {int n;cin>>n;string str1[100],str2[100];for (int i = 0; i < n; i++)cin>>str1[i]>>str2[i];for (int i = 0; i < n; i++){if (check(str1[i],str2[i])==0) cout<<"Tie"<<endl;if (check(str1[i],str2[i])==1) cout<<"Player1"<<endl;if (check(str1[i],str2[i])==2) cout<<"Player2"<<endl;}return 0; }總結
以上是生活随笔為你收集整理的1132:石头剪子布的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Insertion Sort Aizu
- 下一篇: Bubble Sort Aizu - A