你作甚?
2023-11-02 19:21:59
发布于:浙江
14阅读
0回复
0点赞
#include <iostream>
#include <cmath>
#include <cstdio>
#include <math.h>
#include <iomanip>
#include <string>
#include <cstring>
#include <vector>
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin >> a >> b >> c;
if(!((a+b)>c&&(a+c)>b&&(b+c)>a)){
cout << "error" << endl;
return 0;
}
if(a==b&&b==c){
cout << "aaa" << endl;
return 0;
}
if((a==b&&b!=c) || (a!=b&&b==c) || (a!=c&&b==a) || (a==c&&b!=c) || (a!=c&&b==c)){
cout << "aab" << endl;
return 0;
}
cout << "abc";
return 0;
}
这里空空如也
有帮助,赞一个