#include<bits/stdc++.h>
using namespace std;
int gcd(int a,int b)
{
int c;
while(b>0)
{
c=a%b;
a=b;
b=c;
}
return a;
}
int main()
{
int a,b,c;
cin>>a>>b>>c;
int x=a*b/gcd(a,b);
int y=x*...
英文文章 | 文章字數 | 測試時長 | 準確率 | 速度 | 退格數 | 出錯數 | 成績 |
---|---|---|---|---|---|---|---|
《最小公约数及最小公倍数-模板》 | 234字 | 13.0分钟 | 100% | 235 CPM | 7 次 | 0 | 优秀,成绩不错哦! |
勵誌名言: 干嘛拿我和别人比较呢?干嘛我要去和别人比较呢。 ——刘德华 | |||||||
您覺的這篇文章怎麽樣,評個分吧,做其他人的指路燈 |