解题思路:
注意事项:
参考代码:
import java.util.Arrays; import java.util.Scanner; public class T1975 { public static void main(String[] args) { Scanner in = new Scanner(System.in); while(in.hasNext()){ String s = in.next(); Poker pk[] = new Poker[5]; int i=0,j = 0; while(j<s.length()){ pk[i] = new Poker(); pk[i].digit = s.charAt(j); if(s.charAt(j) != '1'){ pk[i].color = s.charAt(j+1); j+=2; } else{ pk[i].color = s.charAt(j+2); j+=3; } i++; } Arrays.sort(pk); for(i = 0;i<5;i++){ if(i!=0) System.out.print(" "); if(pk[i].digit != '1') System.out.printf("%c%c",pk[i].digit,pk[i].color); else System.out.printf("%c0%c",pk[i].digit,pk[i].color); } System.out.println(); } in.close(); } } class Poker implements Comparable<Poker>{ char digit; char color; @Override public int compareTo(Poker pk){ String t = "234567891JQKAdchs"; if(t.indexOf(this.digit)<t.indexOf(pk.digit)) return -1; else if(t.indexOf(this.digit)>t.indexOf(pk.digit)) return 1; else{ if(t.indexOf(this.color) < t.indexOf(pk.color)) return -1; else return 1; } } }
0.0分
3 人评分
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:623 |
C语言训练-计算1977!* (C语言代码)浏览:940 |
简单的a+b (C语言代码)浏览:783 |
淘淘的名单 (C语言代码)答案错误???浏览:624 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)浏览:2098 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:1215 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
The 3n + 1 problem (C语言代码)浏览:603 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
蚂蚁感冒 (C语言代码)浏览:1408 |