Problem | gcd |
---|---|
User | o0oNotGXYo0o |
Submission Time | 2023-06-30 16:32:52 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
gcd.cpp: In function ‘int main()’:
gcd.cpp:9:9: error: expected ‘;’ before ‘d’
9 | c = b
| ^
| ;
10 | d = a % b
| ~
gcd.cpp:14:12: error: expected ‘;’ before ‘}’ token
14 | cout << a
| ^
| ;
15 | }
| ~
gcd.cpp:18:9: error: expected ‘;’ before ‘d’
18 | c = a
| ^
| ;
19 | d = b % a
| ~
gcd.cpp:23:12: error: expected ‘;’ before ‘}’ token
23 | cout << b
| ^
| ;
24 | }
| ~