正经吗题解 | 消息堆积 简略版
2024-08-01 10:46:06
发布于:浙江
19阅读
0回复
0点赞
先来上代码,后面我提供讲解。
#include <iostream>
using namespace std;
bool daan(int a){
if(a >= 99)
return true;
else
return false;
}
int main(){
int a;
cin >> a;
if(daan(a))
cout << "99+";
else
cout << a;
return 0;
}
我在这里呢定义了一个函数,如果这个消息大于等于99也就返回true说明代表超纲了,需要输出99+否则返回false输出a。应该很好理解吧
全部评论 1
求赞
2024-07-29 来自 浙江
1
有帮助,赞一个