政府最近開始推行『一定中大樂透』,規則如下:
自己在心中選擇一個數字 N ( 0 < N ≤ 100 ),並且寫在紙條上
機器自動選擇一個數字 M ( 0 < M ≤ 100 )
如果紙條上的數字和機器選擇的數字同為「奇數」或是同為「偶數」,則玩家勝,否則玩家失敗。
現在給你玩家選擇的數字 N 和機器選擇的數字 M,請判斷玩家是否勝利。
輸入說明 :
輸入檔含有多組資料,每組資料一行。
一組資料包含兩個數字 N, M ( 0 < N ≤ 100, 0 < M ≤ 100 ) 以空白字元分開。
當 N = 0 且 M = 0 時代表輸入結束,這組資料不需要被處理。
輸出說明 :
對每組測試資料輸出一行,如果玩家勝,則輸出「Win」,否則輸出「Loss」。
範例輸入 :
1 2
3 3
100 2
0 0
範例輸出 :
Loss
Win
Win
程式碼 :
#include <stdio.h> int main() { int a,b; while(scanf("%d%d",&a,&b)==2) { if(a == b && a == 0) break; if((a%2)==(b%2)) printf("Win\n"); else printf("Loss\n"); } return 0; }
http://zerojudge.tw/ShowProblem?problemid=d590
沒有留言:
張貼留言