| Problem | gcd |
|---|---|
| User | Daddy |
| Submission Time | 2023-07-21 14:30:16 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
gcd.cpp: In function ‘int main()’:
gcd.cpp:6:25: error: ‘endl’ was not declared in this scope; did you mean ‘std::endl’?
6 | if(m==0) std::cout<<n<<endl;
| ^~~~
| std::endl
In file included from /usr/include/c++/9/iostream:39,
from gcd.cpp:1:
/usr/include/c++/9/ostream:599:5: note: ‘std::endl’ declared here
599 | endl(basic_ostream<_CharT, _Traits>& __os)
| ^~~~
gcd.cpp:7:30: error: ‘endl’ was not declared in this scope; did you mean ‘std::endl’?
7 | else if(n==0) std::cout<<m<<endl;
| ^~~~
| std::endl
In file included from /usr/include/c++/9/iostream:39,
from gcd.cpp:1:
/usr/include/c++/9/ostream:599:5: note: ‘std::endl’ declared here
599 | endl(basic_ostream<_CharT, _Traits>& __os)
| ^~~~
g