蓝桥杯算法提高VIP-图形输出 题解 摘要:解题思路:这题直接输出,我用了R。注意事项:无。参考代码:#include"bits/stdc++.h"using namespace std;int main(){ cout<<R"( X |…… 题解列表 2022年05月05日 0 点赞 0 评论 441 浏览 评分:0.0
新手结构体 希望能帮到你! 摘要:```c #include int main() { struct time { int y; int m; int d; }time; scanf("%d …… 题解列表 2022年05月05日 0 点赞 0 评论 444 浏览 评分:0.0
二级C语言-分段函数 题解 摘要:解题思路:这题自己代入自定义函数,按题目要求判断。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;double x,y;int hs(do…… 题解列表 2022年05月05日 0 点赞 0 评论 434 浏览 评分:0.0
蓝桥杯算法提高VIP-企业奖金发放 摘要:解题思路:按照题目要求判断所在的范围,再输出就可以了。注意事项:要保留两位小数。参考代码:#include<bits/stdc++.h>using namespace std;double a;int…… 题解列表 2022年05月05日 0 点赞 0 评论 414 浏览 评分:0.0
统计字符个数 摘要:解题思路:边输入,边统计,最后输出就行了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int letter=0,number=0,ot…… 题解列表 2022年05月05日 0 点赞 0 评论 384 浏览 评分:0.0
蓝桥杯算法提高VIP-进制转换 摘要:解题思路:直接输入输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int s;int main(){ scanf("%x",&…… 题解列表 2022年05月05日 0 点赞 0 评论 349 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:直接循环输入输出。注意事项:while输入。参考代码:#include<bits/stdc++.h>using namespace std;int s;int main(){ whil…… 题解列表 2022年05月05日 0 点赞 0 评论 409 浏览 评分:0.0
[编程入门]二进制移位练习 摘要:解题思路:运用位移和与运算符。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("%d…… 题解列表 2022年05月05日 0 点赞 0 评论 353 浏览 评分:0.0
蓝桥杯基础练习-十进制转十六进制 题解 摘要:解题思路:直接输入输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int s;int main(){ scanf("%d",&…… 题解列表 2022年05月05日 0 点赞 0 评论 355 浏览 评分:0.0
c++兰顿蚂蚁问题 摘要:参考代码:#include<iostream> using namespace std; int dx[4]={-1,0,1,0};//上右下左顺时针 int dy[4]={0,1,0,-1};…… 题解列表 2022年05月06日 0 点赞 0 评论 368 浏览 评分:0.0