问题
编写一个程序,从命令行得到三个整数参数。如果它们都相等则打印equal,否则打印not equal。
解答
从命令行读入a,b,c三个整数,再用if语句判断a、b是否相等,b、c是否相等即可。
import java.util.Scanner;
public class testFile {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
if ((a==b) && (b==c)) {
System.out.println("equal");
}else {
System.out.println("not equal");
}
}
}