sstringstream #1458: 蓝桥杯2013年第四届真题-错误票据 摘要:``` #define _CRT_SECURE_NO_WARNINGS 1 #include #include #include #include #include #include …… 题解列表 2024年11月11日 0 点赞 1 评论 54 浏览 评分:0.0
[STL训练]{A} + {B},纯循环思路清晰 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量a和b,以及数组c、d和e …… 题解列表 2024年11月11日 0 点赞 0 评论 40 浏览 评分:0.0
新手较简单的数组方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[55]; int i; a[0]=1;a[1]=2;a[2]=3;a[3]=4; for(i=4;i…… 题解列表 2024年11月11日 0 点赞 0 评论 129 浏览 评分:9.9
温度转换(C语言新手) 摘要:解题思路:注意事项:需注意5和(F-32)之间的乘号不可省略,要写*参考代码:#include <stdio.h>int main(){ float c,F; scanf("%f",&F); c=5*…… 题解列表 2024年11月11日 3 点赞 0 评论 578 浏览 评分:0.0
太太太太太太太太太太对啦 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x%2 == 0) prin…… 题解列表 2024年11月11日 0 点赞 1 评论 79 浏览 评分:10.0
蓝桥杯算法训练VIP-一元三次方程求解,简单问题复杂化解法!!! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量a, b, c, d用于存储…… 题解列表 2024年11月11日 0 点赞 1 评论 62 浏览 评分:8.0
x新手小白第一次写题解,如有不完美的地方请多见谅 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int a[12]={31,0,31,30,31,30,31,31,30,31,30,31};void f(int y,int m){…… 题解列表 2024年11月10日 0 点赞 0 评论 164 浏览 评分:7.3
[STL训练]周瑜的反间计 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量n和m,以及两个数组a和b,…… 题解列表 2024年11月10日 0 点赞 0 评论 59 浏览 评分:0.0
(超详细注释)关于 流感传染 的暴力解决方案(C/C++) 摘要:解题思路:使用for循环与二维数组进行暴力模拟解决注意事项:注意第一天已经给出,所以感染时间只有m-1天。注意二维数组类型应该是char,而不是int参考代码:#include using na…… 题解列表 2024年11月10日 0 点赞 0 评论 76 浏览 评分:9.9
2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll myMax(ll a,ll b,l…… 题解列表 2024年11月10日 0 点赞 0 评论 42 浏览 评分:0.0