赞
踩
【参考答案】:
- #include<bits/stdc++.h>
- using namespace std;
- int main(){
- int a,b,c;
- cin>>a>>b>>c;
- for(int i=2;i<=a;i++)
- if((a%i==b%i)&&(b%i==c%i)){
- cout<<i;
- return 0;
- }
-
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。