老師勿看
2024-01-31 19:01:52
发布于:四川
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b,d,e,c=1,f=1;
scanf("%d %d",&a,&b);
scanf("%d %d",&d,&e);
while(c!=0){
c=a%b;
a=b;
b=c;
}
while(f!=0){
f=d%e;
d=e;
e=f;
}
printf("%d\n%d",a,d);
return 0;
}
全部评论 3
13题
#include<bits/stdc++.h>
using namespace std;
int main(){
long long a;
cin>>a;
if(a%2==0){
cout<<"yes";
}else{
cout<<"no";
}
return 0;
}2024-01-31 来自 四川
112题
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a>b){
cout<<a;
}else{
cout<<b;
}
return 0;
}2024-01-31 来自 四川
1#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
for(int i=1;i<=n;i++){
for(int j=1;j<=i;j++){
cout<<"*";
}
cout<<endl;
}
return 0;
}2024-01-31 来自 四川
0
有帮助,赞一个