Java经典编程题50道之十八

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

public class Example18 {
    public static void main(String[] args) {
        vs();
    }

public static void vs() {
        char[] m = { ‘a‘, ‘b‘, ‘c‘ };
        char[] n = { ‘x‘, ‘y‘, ‘z‘ };
        for (int i = 0; i < m.length; i++) {
            for (int j = 0; j < n.length; j++) {
                if (m[i] == ‘a‘ && n[j] == ‘x‘) {
                    continue;
                } else if (m[i] == ‘a‘ && n[j] == ‘y‘) {
                    continue;
                } else if ((m[i] == ‘c‘ && n[j] == ‘x‘)
                        || (m[i] == ‘c‘ && n[j] == ‘z‘)) {
                    continue;
                } else if ((m[i] == ‘b‘ && n[j] == ‘z‘)
                        || (m[i] == ‘b‘ && n[j] == ‘y‘)) {
                    continue;
                } else {
                    System.out.println(m[i] + " vs " + n[j]);
                }
            }
        }
    }
}

时间: 2024-12-15 13:12:10

Java经典编程题50道之十八的相关文章

Java经典编程题50道之四十八

某个公司采用公用电话传递数据,数据是四位的整数,在传递过程中是加密的,加密规则如下: 每位数字都加上5,然后用和除以10的余数代替该数字, 再将第一位和第四位交换,第二位和第三位交换. public class Example48 {    public static void main(String[] args) {        f(2345);    } public static void f(int num) {        int[] c = new int[4];      

Java经典编程题50道之三十八

编写一个函数:输入n为偶数时,调用函数求1/2+1/4+...+1/n:当输入n为奇数时,调用函数1/1+1/3+...+1/n. public class Example38 {    public static void main(String[] args) {        double d = sum(3);        System.out.println("运算结果为:" + d);    } public static double sum(int n) {     

Java经典编程题50道之五十

有五个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号,姓名,三门课成绩),计算出平均成绩,况原有的数据和计算出的平均分数存放在磁盘文件 "stud"中. public class Example50 {    public static void main(String[] args) {        stud();    } public static void stud() {        Scanner ss = new Scanner(System.in); 

Java经典编程题50道之四十六

编程实现两个字符串的连接. public class Example46 {    public static void main(String[] args) {        addString("hello"," world!");    }    public static void addString(String s1,String s2){        String s3=s1+s2;        System.out.println("

Java经典编程题50道之四十

将几个字符串排序(按英文字母的顺序). public class Example40 {    public static void main(String[] args) {        String[] s={"math","english","java","java web","rose"};        stringSort(s);    } public static void stringS

Java经典编程题50道之十六

输出九九乘法表. public class Example16 {    public static void main(String[] args) {        table(9);    } public static void table(int n) {        for (int i = 1; i <= n; i++) {            for (int j = 1; j <= i; j++) {                System.out.print(j +

Java经典编程题50道之十五

输入三个整数x,y,z,请把这三个数由小到大输出. public class Example15 {    public static void main(String[] args) {        sort(15, 10, 5);    } public static void sort(int x, int y, int z) {        if (x > y) {            int t = x;            x = y;            y = t;  

Java经典编程题50道之十四

输入某年某月某日,判断这一天是这一年的第几天? public class Example14 {    public static void main(String[] args) {        year(2017, 1, 1);    } public static void year(int year, int month, int day) {        int d = 0;        int days = 0;        if (year < 0 || month <

Java经典编程题50道之十九

打印出如下图案(菱形)        *      ***    ******  ********    ******      ***        * public class Example19 {    public static void main(String[] args) {        display(5);    } public static void display(int h) {        for (int i = 0; i < (h + 1) / 2; i++