whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共6篇)
geline(cin,str)或取一整行,题解 | #统计字符#
注意:必须geline(cin,str)或取一整行 否则会转义字符出问题 #include<bits/stdc++.h> using namespace std; int main() { string str; while( getline(cin,str) ) ...
输入输出格式记忆
2021-07-21
0
537
gets被禁止后使用cin.getline
#include<bits/stdc++.h> using namespace std; const int maxn=1e5+5; char solve[maxn]={0}; int main() { while( cin.getline(solve,maxn) ) ...
输入输出格式记忆
2021-03-18
0
722
多组输入输出样题
C++编译器被禁止用gets #include<bits/stdc++.h> using namespace std; int main() { char solve[1030]={0}; while( cin.getline(solve,1030) ) {...
输入输出格式记忆
2021-03-18
0
458
题目样例有毒
看到样例有 1 Hello! How are you! 以为要这么输入 while( scanf("%d",&n) ) { while( n-- ) { string str; getline(cin,s...
输入输出格式记忆
2020-12-11
1
745
牛客应该禁用gets了-取代方法
一、情况 #include<bits/stdc++.h> using namespace std; static const int maxn=1e5+5; char a[maxn]; char b[maxn]; char solve[maxn]; void MyStrcat(cha...
输入输出格式记忆
记忆
2020-12-11
0
1476
格式控制
scanf格式控制 #include<bits/stdc++.h> using namespace std; bool solve(string A, string B) { // write code here int lenA=A.size(); ...
输入输出格式记忆
2020-12-11
0
446