2754: 其他基本数据类型存储空间大小 摘要:#include <stdio.h>#include <stdbool.h>int main(){ bool x; char…… 题解列表 2025年12月03日 0 点赞 0 评论 263 浏览 评分:8.0
2753: 浮点型数据类型存储空间大小 摘要:参考代码:#include <stdio.h>int main(){ float x; double y; p…… 题解列表 2025年12月03日 0 点赞 0 评论 235 浏览 评分:0.0
这个比其他的要简单的多了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int c=-100;int F=0;int ctof(int c);int main(){ wh…… 题解列表 2025年12月02日 0 点赞 0 评论 215 浏览 评分:0.0
2878:计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[200][200],i,j,n,m,s; scanf("%d%d"…… 题解列表 2025年12月02日 0 点赞 0 评论 202 浏览 评分:0.0
2837:年龄与疾病 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[100],i,n; int b,c,d,e; b=c=d=e=0; scanf(&qu…… 题解列表 2025年12月02日 0 点赞 0 评论 177 浏览 评分:0.0
3020:最大数位置 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[1000],i,n,ma,k; scanf("%d",&n…… 题解列表 2025年12月02日 0 点赞 0 评论 260 浏览 评分:0.0
判断一个数是不是素数 摘要:解题思路:注意事项:参考代码#include <stdio.h>#include <math.h>int sushu(int n){ if(n<=1) return 0;…… 题解列表 2025年12月02日 1 点赞 0 评论 344 浏览 评分:0.0
Py2865-紧急措施-步骤清晰 摘要:my_email=input().strip()n=int(input())arr=list(input().split…… 题解列表 2025年12月02日 0 点赞 0 评论 140 浏览 评分:0.0
一个方法筛质数,一个方法筛回文数,两个的交集 摘要:解题思路:一个方法筛质数,一个方法筛回文数,两个的交集注意事项:参考代码:import java.util.ArrayList;import java.util.List;import java.ut…… 题解列表 2025年12月01日 0 点赞 0 评论 210 浏览 评分:0.0
刷题记录2025/12/1 1635: 蓝桥杯算法训练VIP-整数平均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a; double sum=0; scanf("%d",&n…… 题解列表 2025年12月01日 0 点赞 3 评论 235 浏览 评分:0.0