标签:
当时看到题目的时候自己就晕了,不懂什么意思,做出来的结果竟然是一个人比好几个人,当时还觉得一个人可以打几场呢!==!后来求助大神得到了答案,共勉一下吧~~
public static void main(String[] args) {
for(int a = 1 ;a<=3;a++){
for(int b = 1 ;b<=3;b++){
for(int c = 1 ;c<=3;c++){
if(a != 1 && c != 1 && c != 3 && a!=b && b!=c && a!=c){
System.out.println("A:"+(char)(‘X‘+(a-1)));
System.out.println("B:"+(char)(‘X‘+(b-1)));
System.out.println("C:"+(char)(‘X‘+(c-1)));
}
}
}
}
}
}
标签:
原文地址:http://www.cnblogs.com/yuTseblog/p/4419517.html