【洛谷学习自留】b3684 不可以,总司令

【洛谷学习自留】b3684 不可以,总司令_第1张图片解题思路:

不要被超长的题目内容混淆了视线,本质上就是一个比大小的问题。两个输入,判断哪个值更大,然后输出相应的内容。

代码实现:

import java.util.Scanner;

public class b3684 {
    public static void main(String[] args) {


        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if(ab){
            System.out.println("no");
        }
    }
}

你可能感兴趣的:(学习,算法,java)