娄正阳
娄正阳
全部文章
分类
归档
标签
去牛客网
登录
/
注册
娄正阳的博客
全部文章
(共2篇)
题解 | 最厉害的学生
#include <iostream> #include <string> #include <vector> using namespace std; typedef struct{ char name[8]; int c1; int ...
2025-11-30
0
7
题解 | 反向输出一个四位数
#include <iostream> using namespace std; int main() { int n; cin >> n; while(n > 0){ cout << n%10; n...
2025-11-08
0
16