2757: 浮点数向零舍入(别学我,我纯粹图个方便) 摘要:##2757: 浮点数向零舍入(别学我,我纯粹图个方便):tw-1f361: ```c #include int main() { int a; scanf("%d",&a); p…… 题解列表 2023年01月01日 0 点赞 0 评论 605 浏览 评分:4.0
题解 2832: 第n小的质数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void panduan(int n);int main(){ int n; scanf("%d",&n); pand…… 题解列表 2023年01月01日 0 点赞 0 评论 903 浏览 评分:9.9
C语言训练-求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int arr[100][100]; int n,i,j; int sum…… 题解列表 2023年01月01日 0 点赞 0 评论 313 浏览 评分:0.0
C语言训练-邮票组合问题* 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { printf("19"); return 0; }…… 题解列表 2023年01月01日 0 点赞 0 评论 341 浏览 评分:0.0
二级C语言-自定义函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double fact(long long n); double my_pow(double …… 题解列表 2023年01月01日 0 点赞 0 评论 363 浏览 评分:0.0
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct Student { char num[20]; char name[10]; doubl…… 题解列表 2023年01月01日 0 点赞 0 评论 329 浏览 评分:0.0
编写题解 1017: [编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:// [编程入门]完数的判断 #include<stdio.h> int fun(int n); void func(int x); int main() { …… 题解列表 2023年01月01日 0 点赞 0 评论 341 浏览 评分:9.9
编写题解 2828: 与7无关的数 摘要:解题思路:注意事项:参考代码://编写题解 2828: 与7无关的数 //一个正整数,如果它能被7整除,或者它的十进制表示法中某一位上的数字为7,则称其为与7相关的数。现求所有小于等于n(n < 1…… 题解列表 2023年01月01日 0 点赞 0 评论 446 浏览 评分:0.0
编写题解 2829: 数1的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,x,i,count=0,t; scanf("%d",&n); fo…… 题解列表 2023年01月01日 0 点赞 1 评论 714 浏览 评分:8.4
编写题解 2830: 数字统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,x,i,count=0,t; scanf("%d %d",&x,&n); …… 题解列表 2023年01月01日 0 点赞 0 评论 423 浏览 评分:9.9