foo.cc: In function ‘int main()’:
foo.cc:7:14: error: ‘a’ was not declared in this scope
7 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:7:17: error: ‘b’ was not declared in this scope
7 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:7:20: error: ‘c’ was not declared in this scope
7 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:7:23: error: ‘d’ was not declared in this scope
7 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:7:26: error: ‘e’ was not declared in this scope
7 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:7:29: error: ‘f’ was not declared in this scope
7 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
foo.cc:7:32: error: ‘t’ was not declared in this scope; did you mean ‘tm’?
7 | cin>>a>>b>>c>>d>>e>>f>>t>>endl;
| ^
| tm
foo.cc:33:24: error: expected ‘;’ before ‘}’ token
33 | return 0
| ^
| ;
......
36 | }
| ~