0_0_29402908_2270.cpp:6:1: error: '_int64' does not name a type
_int64 gcd(_int64 a, _int64 b)
^
0_0_29402908_2270.cpp: In function 'int main()':
0_0_29402908_2270.cpp:14:2: error: '_int64' was not declared in this scope
_int64 T;
^
0_0_29402908_2270.cpp:16:10: error: 'T' was not declared in this scope
(cin >> T).get();
^
0_0_29402908_2270.cpp:19:10: error: expected ';' before 'result'
_int64 result = 1;
^
0_0_29402908_2270.cpp:23:10: error: expected ';' before 'x'
_int64 x;
^
0_0_29402908_2270.cpp:24:16: error: 'x' was not declared in this scope
while (ss >> x)
^
0_0_29402908_2270.cpp:26:4: error: 'result' was not declared in this scope
result = result / gcd(result, x)*x;
^
0_0_29402908_2270.cpp:26:35: error: 'gcd' was not declared in this scope
result = result / gcd(result, x)*x;
^
0_0_29402908_2270.cpp:28:11: error: 'result' was not declared in this scope
cout << result << endl;
^
|