#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.9分钟 | 100% | 218 CPM | 31 次 | 0 | 良好,向更快挑战! |
Suggestion:
可能对按键不够熟悉,或者对输入法不够熟练所导致,不要急慢慢来,先打对把准确率提高,然后逐渐的加快速度,最后才能打准打快。
|
|||||||
Inspirational quotes: 我想在爱里活下去,活得比爱更长久,活成爱情本身。 ——郭敬明 | |||||||
What do you think of this article? Give it a rating and let it serve as a guiding light for others |