不会的看我!!!
2023-12-30 09:51:38
发布于:广东
14阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
if(a+b>c and a+c>b and b+c>a){
if(a==b and b==c) cout<<"aaa";
else if(a==b or a==c or b==c) cout<<"aab";
else cout<<"abc";
}
else cout<<"error";
return 0;
}
这里空空如也
有帮助,赞一个