You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
212 B
12 lines
212 B
4 months ago
|
float LF = 1;
|
||
|
const int LF = 10;
|
||
|
|
||
|
int main(){
|
||
|
int a,b;
|
||
|
a = getint();
|
||
|
b = getint();
|
||
|
putint(gcd(a,b));
|
||
|
putch(LF);
|
||
|
return 0;
|
||
|
}
|
||
|
// Redefined Variable 重复定义变量/重复声明
|