[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/codeankit10/Java-Programs/master/RockPaperScissor.java [Back]  [Original]

/*The RPS world championship is here. Here two players A and B play the game. You need to determine who wins.
Both players can choose moves from the set {R,P,S}.
The game is a draw if both players choose the same item.
The winning rules of RPS are given below:

Rock crushes scissor
Scissor cuts paper
Paper envelops rock
Input:
The first line of input contains T denoting the number of testcases. T testcases follow. Each testcase contains single line of input that contains two characters sidebyside. These characters denote the moves of players A and B respectively.

Output:
For each testcase, in a newline, print the winner. If match is draw, print 'DRAW'.

Constraints:
1

Web Proxy Viewer  |  New URL  |  Original Page