刷题记录2025/12/3 2796: 求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,i,sum=0; double n; scanf("%lf\n&q…… 题解列表 2025年12月03日 0 点赞 0 评论 93 浏览 评分:0.0
2754: 其他基本数据类型存储空间大小 摘要:#include <stdio.h>#include <stdbool.h>int main(){ bool x; char…… 题解列表 2025年12月03日 0 点赞 0 评论 105 浏览 评分:0.0
2753: 浮点型数据类型存储空间大小 摘要:参考代码:#include <stdio.h>int main(){ float x; double y; p…… 题解列表 2025年12月03日 0 点赞 0 评论 86 浏览 评分:0.0
这个比其他的要简单的多了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int c=-100;int F=0;int ctof(int c);int main(){ wh…… 题解列表 2025年12月02日 0 点赞 0 评论 91 浏览 评分: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 评论 72 浏览 评分: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 评论 78 浏览 评分:0.0
3020:最大数位置 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[1000],i,n,ma,k; scanf("%d",&n…… 题解列表 2025年12月02日 0 点赞 0 评论 110 浏览 评分:0.0
判断一个数是不是素数 摘要:解题思路:注意事项:参考代码#include <stdio.h>#include <math.h>int sushu(int n){ if(n<=1) return 0;…… 题解列表 2025年12月02日 0 点赞 0 评论 200 浏览 评分:0.0
Py2865-紧急措施-步骤清晰 摘要:my_email=input().strip()n=int(input())arr=list(input().split…… 题解列表 2025年12月02日 0 点赞 0 评论 57 浏览 评分:0.0
一个方法筛质数,一个方法筛回文数,两个的交集 摘要:解题思路:一个方法筛质数,一个方法筛回文数,两个的交集注意事项:参考代码:import java.util.ArrayList;import java.util.List;import java.ut…… 题解列表 2025年12月01日 0 点赞 0 评论 71 浏览 评分:0.0