码迷,mamicode.com
首页 > 其他好文 > 详细

2019春招面试题总结-06

时间:2019-07-16 10:38:54      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:int   col   tin   style   题目   决定   总结   print   比赛   

编程题题目:

    两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。已抽签决定比赛名单。有人向队员打听比赛名单。a说不和x比,c说不和x,z比,请编程找出比赛名单。

编程结果如下:

public class Main{
    public static void main(String[] args){
        String[] team1 = {"a","b","c"};
        String[] team2 = {"x","y","z"};
        for(int i=0;i<3;i++){
            for(int j=0;j<3;j++){
                if(i==0 && j==0){//a不和x比
                    continue;
                }else if(i==2 &&(j==0 || j==2)){
                    continue;
                }else{
                    System.out.println(team1[i]+"<----->"+team2[j]);
                }
            }  
        }
    }  
}    

 

2019春招面试题总结-06

标签:int   col   tin   style   题目   决定   总结   print   比赛   

原文地址:https://www.cnblogs.com/helloworldmybokeyuan/p/11193107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!