Kevin234


私信TA

用户名:Kevin234

访问量:20491

签 名:

手可摘星辰

等  级
排  名 849
经  验 3622
参赛次数 0
文章发表 40
年  龄 0
在职情况 学生
学  校 南京信息工程大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

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 人评分

  评论区

  • «
  • »