摘要:
#include <stdio.h> #include <iostream> #include <string> #include <cstring> using namespace std; int main(){ string str; getline(cin,str); for(int i = 阅读全文
摘要:
#include <stdio.h> #include <iostream> #include <string> #include <cstring> using namespace std; //统计第一行字符串在第二行中出现的次数 //先遍历第二行,每个元素的次数 //然后遍历第一行,看看 in 阅读全文
摘要:
#include <string> #include <iostream> //循环加密 int main(){ string str; //获取一行输入,getline(输入方式,存入哪里) while(getline(cin,str)){ //遇到特定输入,跳出循环 if(str == "END 阅读全文