Run id: 119278
Main.cc: In function 'int main()':
Main.cc:9:10: error: 'm' was not declared in this scope
cin>>m;
^
Main.cc:10:5: error: 'g' was not declared in this scope
g = m % 10;
^
Main.cc:10:9: error: 'm' was not declared in this scope
g = m % 10;
^
Main.cc:11:5: error: 's' was not declared in this scope
s = m / 10 % 10;
^
Main.cc:12:5: error: 'b' was not declared in this scope
b = m / 100 % 10;
^
Main.cc:13:5: error: 'q' was not declared in this scope
q = m / 1000;
^
Main.cc:15:9: error: 'num' was not declared in this scope
num+-1;
^
Main.cc: At global scope:
Main.cc:22:2: error: expected unqualified-id before 'return'
return 0;
^
Main.cc:23:1: error: expected declaration before '}' token
}
^