[编程入门]时间设计 摘要:解题思路:数组定义来累加注意事项:判断闰年参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c,s,z[15]={0,31,28,31,3…… 题解列表 2022年05月05日 0 点赞 0 评论 365 浏览 评分:0.0
1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define PI acos(-1)//acos(-1)为PI的精确值,头文件是math.h using namespac…… 题解列表 2022年05月05日 0 点赞 0 评论 460 浏览 评分:0.0
1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;long long a,b;int main(){ cin>>a>>b; c…… 题解列表 2022年05月05日 0 点赞 0 评论 521 浏览 评分:0.0
a+b非常简单 摘要:解题思路:直接求a+b注意事项:要用while,否则会错误滴参考代码:#include<iostream>#include<fstream>#include<algorithm>using names…… 题解列表 2022年05月05日 0 点赞 1 评论 622 浏览 评分:8.9
[编程入门]温度转换 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;int main(){ float f ; cin>>f ; f…… 题解列表 2022年05月05日 0 点赞 0 评论 411 浏览 评分:0.0
[编程入门]密码破译有惊喜 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout <<"Glmre"; return 0…… 题解列表 2022年05月05日 0 点赞 0 评论 398 浏览 评分:0.0
[编程入门]打印图案 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" *\n * *\n*****"; …… 题解列表 2022年05月05日 0 点赞 0 评论 357 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑 (C++ stl string代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;void test01() { string str; get…… 题解列表 2022年05月05日 0 点赞 0 评论 413 浏览 评分:9.9
C语言训练-计算1~N之间所有奇数之和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main(){ cin>>n; fo…… 题解列表 2022年05月05日 0 点赞 0 评论 512 浏览 评分:0.0
C语言训练-求素数问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[1000005],n;int main(){ cin>…… 题解列表 2022年05月05日 0 点赞 0 评论 365 浏览 评分:0.0