小白--cumt
小白--cumt
全部文章
题解
未归档(1)
归档
标签
去牛客网
登录
/
注册
小白--cumt的博客
全部文章
/ 题解
(共10篇)
STL-- unordered_map
遇到题就想着用STL ,别说还挺爽 #include<iostream> #include<unordered_map> #include<vector> using namespace std; int main() { int n; cin >...
2020-06-09
2
904
无标题
记得res,i,vector 都要还原成初始的状态 #include<iostream> #include<vector> using namespace std; int main() { vector<double> vec; double r...
2020-06-08
0
559
无标题
如何删除前导零? #include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { long n; cin >> n; ...
2020-06-07
0
543
switch case
没有别的意思,就是数一下switch case 语句switch 里面只能是整数,不能是浮点数等其他类型 #include<iostream> using namespace std; int main() { int n; while(cin >> n) ...
2020-06-07
0
686
STL -- isalpha()
判断是不是字母,不区分大小写 #include<iostream> #include<cctype> using namespace std; int main() { char s; while(cin >> s) { ...
2020-06-07
1
728
STL--islower(),isupper(),tolower(),toupper()
好用的STL -islower(),isupper(),tolower(),toupper();其实我是非常不想记这个的,非常的枯燥,但是结合题目就不一样了2. islower() 判断是不是小写3. tolower() 转换成小写4. 需要的头文件 #include<cctype>5....
2020-06-07
0
702
STL--set
C++ 中好用的STL --- set #include<iostream> #include<algorithm> #include<set> using namespace std; int main() { set<int> a; ...
2020-06-06
5
701
素数筛
要去大胆的尝试,显然我这是蒙的~ #include<iostream> using namespace std; bool is_prime(int n) { for(int i=2;i<=n/i;i++) if(n%i==0) return false;...
2020-06-06
2
767
判断素数
悄悄告诉大家直接输出143也是可以通过的~判读素数的方法有很多下面实现的是最简单的求素数的方法,试除法; #include<iostream> using namespace std; bool is_prime(int n) { for(int i=2;i<=n/i;i...
2020-06-06
5
690
不要太纠结
可能不是我想的这样,没啥意思,题目描述的精度还是有点问题的 #include<iostream> using namespace std; const float pi = 3.14; float Get_Rect_area(float a,float b) { return ...
2020-06-06
0
827