Silencer76
Silencer76
全部文章
分类
未归档(6)
题解(14)
归档
标签
去牛客网
登录
/
注册
Silencer76的代码屋
Love is priceless.
全部文章
(共84篇)
题解 | #多组_字符串_T组形式#
解题思路 输入字符串,然后用库函数或者循环将其反转,最后输出。 代码 c++ java python #include <iostream> #include <algorithm> #include <string> using namespa...
2024-12-12
0
34
题解 | #单组_字符串#
解题思路 输入字符串,然后用库函数或者循环将其反转,最后输出。 代码 c++ java python #include <iostream> #include <algorithm> #include <string> using namespa...
2024-12-12
0
29
题解 | #多组_二维数组_T组形式#
解题思路 输入数组,循环求和。 代码 c++ java python #include <iostream> using namespace std; using ll=long long; const int N=1010; int a[N][N]; int main...
2024-12-12
0
33
题解 | #单组_二维数组#
解题思路 输入数组,循环求和。 代码 c++ java python #include <iostream> using namespace std; using ll=long long; const int N=1010; int a[N][N]; int main...
2024-12-12
1
38
题解 | #多组_一维数组_T组形式#
解题思路 输入数组,循环求和。 代码 c++ java python #include <iostream> using namespace std; using ll=long long; const int N=100100; int a[N]; int main(...
2024-12-12
0
33
题解 | #单组_一维数组#
解题思路 输入数组,循环求和。 代码 c++ java python #include <iostream> using namespace std; using ll=long long; const int N=100100; int a[N]; int main(...
2024-12-12
0
32
题解 | #多组_A+B_零尾模式#
解题思路 使用 while 循环重复输入 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); cin.ti...
2024-12-11
0
26
题解 | #多组_A+B_T组形式#
解题思路 使用 while 循环重复输入 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); cin.ti...
2024-12-11
0
46
题解 | #多组_A+B_EOF形式#
解题思路 用 while 循环重复输入 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie...
2024-12-11
0
29
题解 | #单组_A+B#
解题思路 输入两个数字,输出它们的和。 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie...
2024-12-11
0
27
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页