0_0_36603852_19877.cpp:4:12: error: expected ':' before 'static'
public static void main(String[] args) {
^
0_0_36603852_19877.cpp:4:29: error: 'String' has not been declared
public static void main(String[] args) {
^
0_0_36603852_19877.cpp:4:38: error: expected ',' or '...' before 'args'
public static void main(String[] args) {
^
0_0_36603852_19877.cpp:15:13: error: expected ':' before 'String'
private String getIs(int n, int s) {
^
0_0_36603852_19877.cpp:15:13: error: 'String' does not name a type
0_0_36603852_19877.cpp:21:1: error: expected ';' after class definition
}
^
0_0_36603852_19877.cpp: In static member function 'static void Main::main(int*)':
0_0_36603852_19877.cpp:5:9: error: 'Scanner' was not declared in this scope
Scanner scanner = new Scanner(System.in);
^
0_0_36603852_19877.cpp:6:20: error: 'scanner' was not declared in this scope
int size = scanner.nextInt();
^
0_0_36603852_19877.cpp:7:30: error: conversion from 'Main*' to non-scalar type 'Main' requested
Main main = new Main();
^
0_0_36603852_19877.cpp:11:13: error: 'System' was not declared in this scope
System.out.println(main.getIs(n, k));
^
0_0_36603852_19877.cpp:11:37: error: 'class Main' has no member named 'getIs'
System.out.println(main.getIs(n, k));
^
|