蓝桥杯算法提高VIP-解二元一次方程组(C++)直接法 摘要: #include #include #include #include #include #include #includ…… 题解列表 2022年03月28日 0 点赞 0 评论 849 浏览 评分:0.0
编写题解 1171: 蟠桃记 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; while(cin>>n){ …… 题解列表 2022年03月28日 0 点赞 0 评论 580 浏览 评分:0.0
编写题解 1172: 计算两点间的距离 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>using namespace std;int main(){ …… 题解列表 2022年03月28日 0 点赞 0 评论 491 浏览 评分:0.0
编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>#define PI 3.1415using namespace …… 题解列表 2022年03月28日 0 点赞 0 评论 586 浏览 评分:0.0
编写题解 2015: 自动晾衣机 摘要:解题思路:注意事项:参考代码:l=int(input()) while True: try: ls=list(map(int,input().split())) …… 题解列表 2022年03月28日 0 点赞 0 评论 560 浏览 评分:0.0
看来我把题想的难了 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int sum,t;int main(){ char c; while(c =…… 题解列表 2022年03月28日 0 点赞 0 评论 518 浏览 评分:0.0
编写题解 1183: 人见人爱A+B 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int a,b,c,d…… 题解列表 2022年03月28日 0 点赞 0 评论 413 浏览 评分:0.0
编写题解 1184: 众数问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[1000]; int n; cin>>n…… 题解列表 2022年03月28日 0 点赞 0 评论 424 浏览 评分:0.0
编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int max = 0; while(…… 题解列表 2022年03月28日 0 点赞 0 评论 339 浏览 评分:0.0
简易for循环+数组解决傻瓜式教学 摘要:解题思路:第一层for循环遍历1~N所有数字,第二层for循环在每一个遍历的数字中查找因数,并用数组存储因数,之后在用if确定是否是完数而是否输出其因数即可。注意事项:在第一层每一次的for循环中要把…… 题解列表 2022年03月28日 0 点赞 0 评论 654 浏览 评分:0.0