最後のprintステートメントで、次のプログラムで非常に単純なエラーに直面しています。しかし、その背後にある正確な理由はわかりません。論理も正しく、構文も正しいです。
エラーの正確な理由を教えてください。
ありがとう
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);
}
}