评测信息

运行ID: 7631
src.cpp:5:3: error: stray '\357' in program
double I,J
^
src.cpp:5:3: error: stray '\274' in program
src.cpp:5:3: error: stray '\214' in program
src.cpp: In function 'int main()':
src.cpp:5:14: error: expected initializer before 'J'
double I,J
^
src.cpp:7:6: error: 'I' was not declared in this scope
if(I<=100000)
^
src.cpp:8:4: error: 'J' was not declared in this scope
J=I*0.1;
^
src.cpp:10:4: error: 'J' was not declared in this scope
J=100000*0.1 (I-100000)*0.075;
^
src.cpp:12:4: error: 'J' was not declared in this scope
J=100000*0.1 (200000-100000)*0.075 (I-200000)*0.05;
^
src.cpp:14:4: error: 'J' was not declared in this scope
J=100000*0.1 (200000-100000)*0.075 (400000-200000)*0.05 (I-600000)*0.03;
^
src.cpp:16:4: error: 'J' was not declared in this scope
J=100000*0.1 (200000-100000)*0.075 (400000-200000)*0.05 (600000-400000)*0.03 (I-600000)*0.015;
^
src.cpp:18:4: error: 'J' was not declared in this scope
J=100000*0.1 (200000-100000)*0.075 (400000-200000)*0.05 (600000-400000)*0.03 (1000000-600000)*0.015 (I-1000000)*0.01;
^
src.cpp:19:15: error: 'J' was not declared in this scope
printf("%f",J);
^
src.cpp:19:17: error: expected '}' at end of input
printf("%f",J);
^