QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#563186 | #8788. Page on vdome.com | Huppup | Compile Error | / | / | Java11 | 279b | 2024-09-14 04:17:45 | 2024-09-14 04:17:46 |
Judging History
answer
import java.util.Scanner;
public class problem1 {
public static main(String[] args) {
Scanner scan = new Scanner(System.in);
int N = scan.nextInt();
if (N < 10) {
System.out.println(N+1);
}
System.out.println(10);
}
}
Details
problem.java:5: error: invalid method declaration; return type required public static main(String[] args) { ^ 1 error