0 LIKES LikeUnLike
What does the error message in the task list pane <identifier> expected mean after I compile the file?Here is the program.import java.util.Scanner;class Subtract { public static void main(String args[]) Scanner myScanner = new Scanner(System.in); double a; double b; double total; System.out.println("a= "); a = myScanner.nextDouble(); System.out.println("b= "); b = myScanner.nextDouble(); total = a - b; System.out.print("Total= "); System.out.print(total); } }
Tags:
Report (0) (0) | earlier
Latest activity: earlier. This question has 5 answers.