Uncomment a line

Report a typo

Here is a broken program.

1) Fix the code to make the program compile.
2) Uncomment a line of code so that the program would print the number 893457.

Write a program in Java 17
/**
* The class implements a simple application with the main method.
*/
class CommentedSimpleApplication {

public static void main(String[] args) {
/*
/* System.out.println(980233);
// System.out.println(893457); */
// System.out.println(789722);
*/
}
}
___

Create a free account to access the full topic