0_0_28624412_3414.cpp:20:1: error: '_int64' does not name a type
_int64 gcd(_int64 n,_int64 m)
^
0_0_28624412_3414.cpp: In function 'int main()':
0_0_28624412_3414.cpp:29:1: error: '_int64' was not declared in this scope
_int64 a,b,c,d,t1,t2,t3,t4,t5,t6;
^
0_0_28624412_3414.cpp:33:33: error: 'a' was not declared in this scope
scanf("%I64d/%I64d%I64d/%I64d",&a,&b,&c,&d);
^
0_0_28624412_3414.cpp:33:36: error: 'b' was not declared in this scope
scanf("%I64d/%I64d%I64d/%I64d",&a,&b,&c,&d);
^
0_0_28624412_3414.cpp:33:39: error: 'c' was not declared in this scope
scanf("%I64d/%I64d%I64d/%I64d",&a,&b,&c,&d);
^
0_0_28624412_3414.cpp:33:42: error: 'd' was not declared in this scope
scanf("%I64d/%I64d%I64d/%I64d",&a,&b,&c,&d);
^
0_0_28624412_3414.cpp:35:1: error: 't1' was not declared in this scope
t1=a*d;
^
0_0_28624412_3414.cpp:36:1: error: 't2' was not declared in this scope
t2=c*b;
^
0_0_28624412_3414.cpp:37:1: error: 't3' was not declared in this scope
t3=b*d;
^
0_0_28624412_3414.cpp:38:1: error: 't4' was not declared in this scope
t4=gcd(t1,t2);
^
0_0_28624412_3414.cpp:38:13: error: 'gcd' was not declared in this scope
t4=gcd(t1,t2);
^
0_0_28624412_3414.cpp:39:1: error: 't5' was not declared in this scope
t5=t1/t4*t2;
^
0_0_28624412_3414.cpp:40:1: error: 't6' was not declared in this scope
t6=gcd(t5,t3);
^
|