A+B for Input-Output Practice (V) from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int m; int n=0; int sum=0; …… 题解列表 2022年01月23日 0 点赞 0 评论 224 浏览 评分:0.0
A+B for Input-Output Practice (IV) from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int m; int n=0; int sum=0; …… 题解列表 2022年01月23日 0 点赞 0 评论 261 浏览 评分:0.0
A+B for Input-Output Practice (III) from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int a,b; while((cin>>a>>b)&&!(a==0&…… 题解列表 2022年01月23日 0 点赞 0 评论 276 浏览 评分:0.0
A+B for Input-Output Practice (II) from beiqiao (C++) 摘要:for循环:#include<iostream> using namespace std; int main() { int a,b; int c; cin>>c;…… 题解列表 2022年01月23日 0 点赞 0 评论 255 浏览 评分:0.0
A+B from beiqiao(C++) 摘要:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) //编译器…… 题解列表 2022年01月23日 0 点赞 0 评论 259 浏览 评分:0.0
简单字符串的不简单解法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ int N; string s; cin>>N; getl…… 题解列表 2022年01月22日 0 点赞 0 评论 301 浏览 评分:0.0
判断最后一个字符 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ string s1,s2; cin>>s1>>s2; in…… 题解列表 2022年01月22日 0 点赞 0 评论 280 浏览 评分:0.0
使用reverse求解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ string str; cin>>str; cout<<s…… 题解列表 2022年01月22日 0 点赞 0 评论 377 浏览 评分:0.0
使用stringstream求解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;vector<string>kk;int main(){ int N; strin…… 题解列表 2022年01月22日 0 点赞 0 评论 269 浏览 评分:0.0
使用getline求解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;vector<string>kk;int main(){ int N; strin…… 题解列表 2022年01月22日 0 点赞 0 评论 330 浏览 评分:0.0