二级C语言-分段函数 题解 摘要:解题思路:这题自己代入自定义函数,按题目要求判断。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double x,y;int hs(do…… 题解列表 2022年05月05日 0 点赞 0 评论 396 浏览 评分:0.0
新手结构体 希望能帮到你! 摘要:```c #include int main() { struct time { int y; int m; int d; }time; scanf("%d …… 题解列表 2022年05月05日 0 点赞 0 评论 408 浏览 评分:0.0
蓝桥杯算法提高VIP-图形输出 题解 摘要:解题思路:这题直接输出,我用了R。注意事项:无。参考代码:#include"bits/stdc++.h"using namespace std;int main(){ cout<<R"( X |…… 题解列表 2022年05月05日 0 点赞 0 评论 415 浏览 评分:0.0
二级C语言-求偶数和 摘要:解题思路:用%2写注意事项:是%2不是/2;参考代码:#include<bits/stdc++.h>using namespace std;int n,s,z;int main(){ cin>…… 题解列表 2022年05月05日 0 点赞 0 评论 296 浏览 评分:0.0
1952: 求长方形面积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; cout<…… 题解列表 2022年05月05日 0 点赞 0 评论 287 浏览 评分:0.0
[编程入门]时间设计 摘要:解题思路:数组定义来累加注意事项:判断闰年参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c,s,z[15]={0,31,28,31,3…… 题解列表 2022年05月05日 0 点赞 0 评论 323 浏览 评分:0.0
1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define PI acos(-1)//acos(-1)为PI的精确值,头文件是math.h using namespac…… 题解列表 2022年05月05日 0 点赞 0 评论 389 浏览 评分:0.0
第一个HelloWorld程序非常简单 摘要:解题思路:直接输入就OK注意事项:大小写区分参考代码:#include<iostream>#include<fstream>#include<algorithm>//文件头using namespac…… 题解列表 2022年05月05日 0 点赞 0 评论 487 浏览 评分:9.9
1951: 求平方和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std ;long long a,b;int main(){ cin>>a>>b; c…… 题解列表 2022年05月05日 0 点赞 0 评论 453 浏览 评分:0.0
a+b非常简单 摘要:解题思路:直接求a+b注意事项:要用while,否则会错误滴参考代码:#include<iostream>#include<fstream>#include<algorithm>using names…… 题解列表 2022年05月05日 0 点赞 1 评论 576 浏览 评分:8.9