各位大神,求解!
查看原帖
各位大神,求解!
815406
IntelliEnd楼主2022/10/2 19:55

本人代码如下:

import  java.util.Scanner;
public  class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if(a <= b){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }

    }
}

请问各位大佬,我的代码哪里有问题,请教一下好吗

2022/10/2 19:55
加载中...