0_0_38138942_29239.cpp:1:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_38138942_29239.cpp:4:12: error: expected ':' before 'static'
public static void main(String[] args) {
^
0_0_38138942_29239.cpp:4:29: error: 'String' has not been declared
public static void main(String[] args) {
^
0_0_38138942_29239.cpp:4:38: error: expected ',' or '...' before 'args'
public static void main(String[] args) {
^
0_0_38138942_29239.cpp:12:1: error: expected ';' after class definition
}
^
0_0_38138942_29239.cpp: In static member function 'static void Main::main(int*)':
0_0_38138942_29239.cpp:5:9: error: 'Scanner' was not declared in this scope
Scanner sc = new Scanner(System.in);
^
0_0_38138942_29239.cpp:6:18: error: 'sc' was not declared in this scope
int ct = sc.nextInt();
^
0_0_38138942_29239.cpp:9:13: error: 'System' was not declared in this scope
System.out.println(b * 2);
^
0_0_38138942_29239.cpp:9:32: error: 'b' was not declared in this scope
System.out.println(b * 2);
^
|