一着遇江风
一着遇江风
全部文章
题解
归档
标签
去牛客网
登录
/
注册
一着遇江风的博客
全部文章
/ 题解
(共4篇)
题解 | #箱子归位#
#include "bits/stdc++.h" using namespace std; int n, count_1 = 0; int main() { while (cin >> n && n != 1) count_1++; ...
C++
2025-01-31
1
30
题解 | #数字计数#
#include <iostream> #include <vector> #include <algorithm> using namespace std; int n; vector<int> arr; int main() { c...
C++
2025-01-26
1
24
题解 | #绩点#
#include <iostream> #include <iomanip> #include <cmath> using namespace std; int n; double a, b, sum1 = 0.0, sum2 = 0.0; int mai...
C++
2025-01-11
1
35
题解 | #[NOIP2008]ISBN号码#
#include "bits/stdc++.h" using namespace std; string str; char ch; int x, sum = 0; int main() { // i 代表循环进行到第几个数字 int i = 1; whi...
C++
数组
字符串
2025-01-09
1
41