/in/foo.cc: In function 'int main()':
/in/foo.cc:8:10: error: expected initializer before 'b'
float a b c d e f g h;
^
/in/foo.cc:9:7: error: 'a' was not declared in this scope
cin>>a;
^
/in/foo.cc:10:7: error: 'b' was not declared in this scope
cin>>b;
^
/in/foo.cc:11:7: error: 'c' was not declared in this scope
cin>>c;
^
/in/foo.cc:12:7: error: 'd' was not declared in this scope
cin>>d;
^
/in/foo.cc:13:7: error: 'e' was not declared in this scope
cin>>e;
^
/in/foo.cc:14:7: error: 'f' was not declared in this scope
cin>>f;
^
/in/foo.cc:15:7: error: 'g' was not declared in this scope
cin>>g;
^
/in/foo.cc:16:7: error: 'h' was not declared in this scope
cin>>h;
^