Silencer76
Silencer76
全部文章
分类
未归档(6)
题解(14)
归档
标签
去牛客网
登录
/
注册
Silencer76的代码屋
Love is priceless.
全部文章
(共353篇)
题解 | #单组_字符串#
解题思路 输入字符串,然后用库函数或者循环将其反转,最后输出。 代码 c++ java python #include <iostream> #include <algorithm> #include <string> using namespa...
2024-12-12
0
58
题解 | #多组_二维数组_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
73
题解 | #单组_二维数组#
解题思路 输入数组,循环求和。 代码 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
66
题解 | #多组_一维数组_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
51
题解 | #单组_一维数组#
解题思路 输入数组,循环求和。 代码 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
61
题解 | #多组_A+B_零尾模式#
解题思路 使用 while 循环重复输入 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); cin.ti...
2024-12-11
1
45
题解 | #多组_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
66
题解 | #多组_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
54
题解 | #单组_A+B#
解题思路 输入两个数字,输出它们的和。 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie...
2024-12-11
0
44
题解 | #只有输出#
解题思路 输出 Hello Nowcoder! 字符串 代码 c++ java python #include <iostream> using namespace std; int main(void) { ios::sync_with_stdio(false); ...
2024-12-11
0
74
首页
上一页
27
28
29
30
31
32
33
34
35
36
下一页
末页