0_0_30262746_25569.cpp: In function 'int main()':
0_0_30262746_25569.cpp:29:3: error: expected ';' before 'int'
int a=0,b=0,c=0;
^
0_0_30262746_25569.cpp:32:4: error: 'c' was not declared in this scope
c=1;
^
0_0_30262746_25569.cpp:36:4: error: 'c' was not declared in this scope
c=-1;
^
0_0_30262746_25569.cpp:40:4: error: 'b' was not declared in this scope
b=1;
^
0_0_30262746_25569.cpp:44:4: error: 'b' was not declared in this scope
b=-1;
^
0_0_30262746_25569.cpp:48:4: error: 'a' was not declared in this scope
a=1;
^
0_0_30262746_25569.cpp:52:4: error: 'a' was not declared in this scope
a=-1;
^
0_0_30262746_25569.cpp:54:16: error: 'a' was not declared in this scope
int temp=abs(a)+abs(b)+abs(c);
^
0_0_30262746_25569.cpp:54:23: error: 'b' was not declared in this scope
int temp=abs(a)+abs(b)+abs(c);
^
0_0_30262746_25569.cpp:54:30: error: 'c' was not declared in this scope
int temp=abs(a)+abs(b)+abs(c);
^
|