#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*...
English Article | Word Count | Duration | Accuracy | Speed | Backspace | Error | Slogan |
---|---|---|---|---|---|---|---|
《最小公约数及最小公倍数-模板》 | 234字 | 0.7分钟 | 100% | 267 CPM | 13 次 | 0 | 优秀,成绩不错哦! |
Inspirational quotes: 爱情是耗尽锐气的激情,爱情是置意志于一炬的火焰,爱情是把人骗入泥潭的诱饵,爱情将剧毒抹在命运之神的箭上。 ——梅斯菲尔德 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |