package erase; public class 选人比赛 { public static void main(String[] args) { // TODO Auto-generated method stub char A=0,B=0,C=0,str; for(str = 'X';str<='Z';str++){ if(str!='X'&&str!='Z') { C=str; } } for(str = 'X';str<='Z';str++){ if(str!='X'&&str!=C) { A=str; } } for(str = 'X';str<='Z';str++){ if(str!=A&&str!=C) { B=str; } } System.out.print("与A比赛的选手是"+A+' '+"与B比赛的选手是"+B+' '+"与C比赛的选手是"+C); } }