嗯格式很标准
2024-01-30 15:53:53
发布于:浙江
4阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main()
{
int a, b, c;
cin >> a >> b >> c;
if (a > 0)
{
cout << a << endl;
}
if (b > 0)
{
cout << b << endl;
}
if (c > 0)
{
cout << c;
}
return 0;
}
这里空空如也
有帮助,赞一个