Silencer76
Silencer76
全部文章
分类
未归档(6)
题解(14)
归档
标签
去牛客网
登录
/
注册
Silencer76的代码屋
Love is priceless.
全部文章
(共244篇)
题解 | #多组_字符串_T组形式#
解题思路 输入字符串,然后用库函数或者循环将其反转,最后输出。 代码 c++ java python #include <iostream> #include <algorithm> #include <string> using namespa...
2024-12-12
0
54
题解 | #单组_字符串#
解题思路 输入字符串,然后用库函数或者循环将其反转,最后输出。 代码 c++ java python #include <iostream> #include <algorithm> #include <string> using namespa...
2024-12-12
0
52
题解 | #多组_二维数组_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
62
题解 | #单组_二维数组#
解题思路 输入数组,循环求和。 代码 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
62
题解 | #多组_一维数组_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
47
题解 | #单组_一维数组#
解题思路 输入数组,循环求和。 代码 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
53
题解 | #多组_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
42
题解 | #多组_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
61
题解 | #多组_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
50
题解 | #单组_A+B#
解题思路 输入两个数字,输出它们的和。 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie...
2024-12-11
0
37
首页
上一页
16
17
18
19
20
21
22
23
24
25
下一页
末页