| Problem | gcd |
|---|---|
| User | 7Janish7 |
| Submission Time | 2025-02-19 16:31:59 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
gcd.cpp: In function ‘long long int hello(long long int, long long int)’:
gcd.cpp:8:11: error: expected ‘;’ before ‘}’ token
8 | return a
| ^
| ;
9 | }else{
| ~
gcd.cpp:10:25: error: expected ‘;’ before ‘}’ token
10 | return hello(b, a % b)
| ^
| ;
11 | }}
| ~
gcd.cpp: In function ‘int main()’:
gcd.cpp:13:9: error: ‘a’ was not declared in this scope
13 | cin >> a >> b
| ^
gcd.cpp:13:14: error: ‘b’ was not declared in this scope
13 | cin >> a >> b
| ^