编写题解 1092: A+B for Input-Output Practice 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; while(m--){…… 题解列表 2022年03月19日 0 点赞 0 评论 348 浏览 评分:0.0
编写题解 1091: A+B for Input-Output Practice (VII) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ …… 题解列表 2022年03月19日 0 点赞 0 评论 360 浏览 评分:0.0
编写题解 1090: A+B for Input-Output Practice (VI) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a;while(cin>>n){ …… 题解列表 2022年03月19日 0 点赞 0 评论 335 浏览 评分:0.0
编写题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a; int m; ci…… 题解列表 2022年03月19日 0 点赞 0 评论 418 浏览 评分:0.0
编写题解 1088: A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a; while(true){…… 题解列表 2022年03月19日 0 点赞 0 评论 361 浏览 评分:0.0
编写题解 1087: A+B for Input-Output Practice (III) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ …… 题解列表 2022年03月19日 0 点赞 0 评论 426 浏览 评分:0.0
编写题解 1086: A+B for Input-Output Practice (II) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a,b; cin>>n; …… 题解列表 2022年03月19日 0 点赞 0 评论 472 浏览 评分:0.0
蓝桥杯算法提高VIP-快速幂 摘要:基于二进制递归的解题思路#include<iostream>using namespace std;long long a,b;int p;long long pow_mod(long long a,…… 题解列表 2022年03月19日 0 点赞 0 评论 524 浏览 评分:0.0
图论拓扑排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> //就是一个字符串关系型的拓扑排序 using namespace std; struct node{ int…… 题解列表 2022年03月19日 0 点赞 0 评论 875 浏览 评分:0.0
双指针 找单词 摘要:```cpp #include using namespace std; string s1; int main(){ getline(cin, s1); int sum …… 题解列表 2022年03月19日 0 点赞 0 评论 436 浏览 评分:0.0