解题思路:
注意事项:
参考代码:
package arrLast; //题目 2849: 石头剪子布 import java.util.Scanner; public class t_2849 { public static void main(String args[]) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); while(n!=0) { String str1=sc.next(),str2=sc.next(); if(str1.equals(str2)) System.out.println("Tie"); //玩家一出石头 if(str1.equals("Rock")&&str2.equals("Paper")) System.out.println("Player2"); if(str1.equals("Rock")&&str2.equals("Scissors")) System.out.println("Player1"); //玩家一出布 if(str1.equals("Paper")&&str2.equals("Scissors")) System.out.println("Player2"); if(str1.equals("Paper")&&str2.equals("Rock")) System.out.println("Player1"); //玩家一出剪刀 if(str1.equals("Scissors")&&str2.equals("Paper")) System.out.println("Player1"); if(str1.equals("Scissors")&&str2.equals("Rock")) System.out.println("Player2"); n--; } } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:577 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:699 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:1968 |
字符串输入输出函数 (C语言代码)浏览:2604 |
1071题解浏览:585 |
小九九 (C语言描述,不看要求真坑爹)浏览:1006 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:692 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:505 |
C二级辅导-温度转换 (C语言代码)浏览:575 |