蓝桥杯2022年第十三届省赛真题-刷题统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long int a, b, n, day = 0; scanf("%ld%ld%ld", &a, …… 题解列表 2023年11月05日 0 点赞 0 评论 164 浏览 评分:0.0
c语言求解链表之节点删除 摘要:```c #include #include #define _CRT_SECURE_NO_WARNINGS 1 typedef struct student { int num;…… 题解列表 2023年11月05日 0 点赞 0 评论 306 浏览 评分:0.0
图像旋转(挺绕的,我是再整了一个数组为旋转了90度的数组) 摘要:解题思路:旋转90度得到的新数组也就是原来数组的每一列,变为新数组的每一行注意事项:参考代码:#include<stdio.h> int main() { int n,m; scanf("…… 题解列表 2023年11月05日 0 点赞 0 评论 123 浏览 评分:0.0
题解 1151: C语言训练-计算一个整数N的阶乘 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int N,a=1; cin>>N; for(int i=1…… 题解列表 2023年11月05日 0 点赞 0 评论 223 浏览 评分:0.0
c++ STL解法,用上vector容器,sort函数 摘要:#include<iostream> #include<vector> #include<algorithm> using namespace std; bool cmp(int a,int …… 题解列表 2023年11月05日 0 点赞 0 评论 121 浏览 评分:0.0
2804: 与指定数字相同的数的个数 摘要:``` #include using namespace std; int main(){ int x,k,n,x1=0; cin>>k>>x; for(int i=1; i>n; …… 题解列表 2023年11月05日 0 点赞 0 评论 156 浏览 评分:0.0
2794: 求平均年龄 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double b,c; cin>>n; for…… 题解列表 2023年11月05日 0 点赞 0 评论 184 浏览 评分:0.0
2796: 求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n, b, c = 0; cin>>n; for(i…… 题解列表 2023年11月05日 0 点赞 0 评论 239 浏览 评分:0.0
甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a,b; double c; scanf("%d%d", &a, …… 题解列表 2023年11月05日 0 点赞 0 评论 359 浏览 评分:0.0
1003c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&c4…… 题解列表 2023年11月05日 0 点赞 0 评论 143 浏览 评分:0.0