NiDeHaiWang
NiDeHaiWang
全部文章
分类
归档
标签
去牛客网
登录
/
注册
NiDeHaiWang的博客
全部文章
(共3篇)
题解 | #Prime Number#
#include <iostream> using namespace std; int main() { int arr[] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, ...
2024-02-28
1
275
题解 | #首字母大写#
#include<iostream> #include<string> using namespace std; int main() { string str; getline(cin, str); str = " " + str + " "; ...
2023-03-13
0
209
题解 | #中位数#
#include <iostream> #include<algorithm> using namespace std; bool comp(int lhs,int rhs) { if(rhs<lhs) { return true; ...
2023-03-12
0
274