0_0_18831709_18655.cpp: In function 'int main()':
0_0_18831709_18655.cpp:7:5: error: 'cin' was not declared in this scope
cin>>t;
^
0_0_18831709_18655.cpp:11:9: error: 'cout' was not declared in this scope
cout<<a+b+max(a,b)<<endl;
^
0_0_18831709_18655.cpp:11:26: error: 'max' was not declared in this scope
cout<<a+b+max(a,b)<<endl;
^
0_0_18831709_18655.cpp:11:26: note: suggested alternative:
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/deque:60:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/queue:60,
from 0_0_18831709_18655.cpp:3:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:261:5: note: 'std::max'
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
0_0_18831709_18655.cpp:11:29: error: 'endl' was not declared in this scope
cout<<a+b+max(a,b)<<endl;
^
|