Problem | gcd |
---|---|
User | zxdxa |
Submission Time | 2025-02-10 15:12:16 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
gcd.cpp: In function ‘int gcd(int, int)’:
gcd.cpp:15:6: error: ‘b’ was not declared in this scope
15 | if (b == 0){
| ^
gcd.cpp:16:10: error: ‘a’ was not declared in this scope
16 | return a;
| ^
gcd.cpp:19:13: error: ‘b’ was not declared in this scope
19 | return gcd(b,a%b);
| ^
gcd.cpp:19:15: error: ‘a’ was not declared in this scope
19 | return gcd(b,a%b);
| ^