0_0_33560813_6300.cpp:1:1: error: 'import' does not name a type
import java.util.Scanner;
^
0_0_33560813_6300.cpp:4:12: error: expected ':' before 'static'
public static void main(String[] args) {
^
0_0_33560813_6300.cpp:4:29: error: 'String' has not been declared
public static void main(String[] args) {
^
0_0_33560813_6300.cpp:4:38: error: expected ',' or '...' before 'args'
public static void main(String[] args) {
^
0_0_33560813_6300.cpp:39:1: error: expected ';' after class definition
}
^
0_0_33560813_6300.cpp: In static member function 'static void Main::main(int*)':
0_0_33560813_6300.cpp:5:13: error: 'Scanner' was not declared in this scope
Scanner sc = new Scanner(System.in);
^
0_0_33560813_6300.cpp:6:25: error: 'sc' was not declared in this scope
int count = sc.nextInt();
^
0_0_33560813_6300.cpp:7:16: error: expected unqualified-id before '[' token
int[] out = new int[count];
^
0_0_33560813_6300.cpp:10:20: error: expected unqualified-id before '[' token
int[] w = new int[n];
^
0_0_33560813_6300.cpp:11:20: error: expected unqualified-id before '[' token
int[] k = new int[n];
^
0_0_33560813_6300.cpp:12:20: error: expected unqualified-id before '[' token
int[] k2 = new int[n];
^
0_0_33560813_6300.cpp:15:21: error: 'w' was not declared in this scope
w[a] = sc.nextInt();
^
0_0_33560813_6300.cpp:16:21: error: 'k' was not declared in this scope
k[a] = sc.nextInt();
^
0_0_33560813_6300.cpp:19:35: error: 'm' was not declared in this scope
while (w[a] < m) {
^
0_0_33560813_6300.cpp:23:21: error: 'k2' was not declared in this scope
k2[a] = k[a] * b;//补充m水分后需要的卡路里
^
0_0_33560813_6300.cpp:25:27: error: 'k2' was not declared in this scope
int min = k2[0];
^
0_0_33560813_6300.cpp:31:17: error: 'System' was not declared in this scope
System.out.println(min);
^
0_0_33560813_6300.cpp:32:17: error: 'out' was not declared in this scope
out[i] = min;
^
|