heaalliicee
heaalliicee
全部文章
分类
归档
标签
去牛客网
登录
/
注册
heaalliicee的博客
全部文章
(共2篇)
题解 | 绕距
#include <iostream> #include<iomanip> #include<cmath> using namespace std; int main() { int x1, y1; int x2, y2; cin >...
2025-08-15
0
22
题解 | 反向输出一个四位数
#include <iostream> using namespace std; int main() { int n; cin >> n; while(n){ cout << n % 10; n /= 1...
2025-08-15
0
18