0_0_37020531_23016.cpp:1:1: error: 'import' does not name a type
import java.math.BigInteger;
^
0_0_37020531_23016.cpp:2:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_37020531_23016.cpp:5:12: error: expected ':' before 'static'
public static void main(String[] args){
^
0_0_37020531_23016.cpp:5:29: error: 'String' has not been declared
public static void main(String[] args){
^
0_0_37020531_23016.cpp:5:38: error: expected ',' or '...' before 'args'
public static void main(String[] args){
^
0_0_37020531_23016.cpp:23:1: error: expected ';' after class definition
}
^
0_0_37020531_23016.cpp: In static member function 'static void Main::main(int*)':
0_0_37020531_23016.cpp:6:9: error: 'Scanner' was not declared in this scope
Scanner cin = new Scanner (System.in);
^
0_0_37020531_23016.cpp:7:15: error: 'cin' was not declared in this scope
while(cin.hasNext()) {
^
0_0_37020531_23016.cpp:10:13: error: 'BigInteger' was not declared in this scope
BigInteger f[]=new BigInteger[110];//´óÕûÊý
^
0_0_37020531_23016.cpp:11:13: error: 'f' was not declared in this scope
f[0]=new BigInteger("1");
^
0_0_37020531_23016.cpp:11:22: error: expected type-specifier before 'BigInteger'
f[0]=new BigInteger("1");
^
0_0_37020531_23016.cpp:13:26: error: expected type-specifier before 'BigInteger'
f[i]=new BigInteger("0");
^
0_0_37020531_23016.cpp:20:13: error: 'System' was not declared in this scope
System.out.println(f[n]);
^
|