欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

记录一个比较有意思的问题

程序员文章站 2022-03-12 16:33:02
...

记录一个比较有意思的问题:

要求:

	**在if(),输入判断条件,使输出的结果为: AB**

题目如下:

public static void main(String args[])  {

        if (){      //  填写条件,要求输出结果为:  AB
            System.out.println("A");
        }else {
            System.out.println("B");
        }
    }

一种方案:

public static void main(String args[])  {

        if (System.out.printf("A") == null){      //  填写条件,要求输出结果为:  AB
            System.out.println("A");
        }else {
            System.out.println("B");
        }
    }
相关标签: java趣味题 java