1091: A+B for Input-Output Practice (VII) 摘要:无脑打印即可。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(cin>>a…… 题解列表 2021年12月15日 0 点赞 0 评论 705 浏览 评分:0.0
1090: A+B for Input-Output Practice (VI) 摘要:这题其实就是上两题改一下。。#include<bits/stdc++.h> using namespace std; int main(){ int m,a,sum; w…… 题解列表 2021年12月15日 0 点赞 0 评论 405 浏览 评分:0.0
1089: A+B for Input-Output Practice (V) 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int n,m,a,sum; cin >> n; …… 题解列表 2021年12月15日 0 点赞 0 评论 371 浏览 评分:0.0
编写题解 1031: [编程入门]自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int R(char a[],char b[]){ i…… 题解列表 2021年12月15日 0 点赞 0 评论 481 浏览 评分:0.0
1088: A+B for Input-Output Practice (IV) 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int a,n; int sum; while…… 题解列表 2021年12月15日 0 点赞 0 评论 453 浏览 评分:9.9
1087: A+B for Input-Output Practice (III) 摘要:a 和 b 同时为 0 时跳出循环。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; w…… 题解列表 2021年12月15日 0 点赞 0 评论 311 浏览 评分:0.0
1086: A+B for Input-Output Practice (II) 摘要:无脑打印。#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; i…… 题解列表 2021年12月15日 0 点赞 0 评论 398 浏览 评分:0.0
1085: A+B for Input-Output Practice (I) 摘要:无脑打印,没啥可说的。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2021年12月15日 0 点赞 0 评论 358 浏览 评分:0.0
适用新手代码 摘要:注意事项:1.题目说在所有的测试数据中,结果均不超过2.1*10^9所以long long用不了2.pow精度有问题过不了…… 题解列表 2021年12月14日 0 点赞 0 评论 544 浏览 评分:9.9