在最后一个打印语句中,我在以下程序中遇到了一个非常简单的错误。但我不知道它背后的确切原因。甚至逻辑是正确的,语法也是正确的。
请让我知道错误的确切原因。
谢谢
import java.util.Scanner;
public class main
{
public static void main(String args[])
{
int c,d;
Scanner s = new Scanner(System.in);
System.out.print("Enter the first number : ");
c = s.nextInt();
System.out.print("Enter the second number : ");
d = s.nextInt();
System.out.println("The sub is : "+ c-d);
}
}