2つの数字を比較(1330)
Java 11
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int a = in.nextInt();
int b = in.nextInt();
in.close();
int c = a-b;
System.out.println( (c > 0) ? ">" : (c < 0) ? "<" : "==" );
}
}
Reference
この問題について(2つの数字を比較(1330)), 我々は、より多くの情報をここで見つけました https://velog.io/@yoojiwon/두-수-비교하기-1330テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol