2760: 整型与布尔型的转换(细节) 摘要:####这样写,在编译器上能过,但提交后会显示编译错误 ```c #include int main() { int a,b; bool c; scanf("%d",&a); …… 题解列表 2023年01月01日 1 点赞 0 评论 697 浏览 评分:0.0
Hello, World!的大小 摘要:##Hello, World!的大小 ```c #include int main() { char a[]="Hello, World!"; printf("%d",sizeof(a…… 题解列表 2023年01月01日 0 点赞 0 评论 2038 浏览 评分:9.9
2757: 浮点数向零舍入(别学我,我纯粹图个方便) 摘要:##2757: 浮点数向零舍入(别学我,我纯粹图个方便):tw-1f361: ```c #include int main() { int a; scanf("%d",&a); p…… 题解列表 2023年01月01日 0 点赞 0 评论 560 浏览 评分:4.0
题解 2832: 第n小的质数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void panduan(int n);int main(){ int n; scanf("%d",&n); pand…… 题解列表 2023年01月01日 0 点赞 0 评论 851 浏览 评分:9.9
C语言训练-求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int arr[100][100]; int n,i,j; int sum…… 题解列表 2023年01月01日 0 点赞 0 评论 235 浏览 评分:0.0
C语言训练-邮票组合问题* 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { printf("19"); return 0; }…… 题解列表 2023年01月01日 0 点赞 0 评论 297 浏览 评分:0.0
二级C语言-自定义函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double fact(long long n); double my_pow(double …… 题解列表 2023年01月01日 0 点赞 0 评论 272 浏览 评分:0.0
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct Student { char num[20]; char name[10]; doubl…… 题解列表 2023年01月01日 0 点赞 0 评论 293 浏览 评分:0.0
编写题解 1017: [编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:// [编程入门]完数的判断 #include<stdio.h> int fun(int n); void func(int x); int main() { …… 题解列表 2023年01月01日 0 点赞 0 评论 274 浏览 评分:9.9
编写题解 2828: 与7无关的数 摘要:解题思路:注意事项:参考代码://编写题解 2828: 与7无关的数 //一个正整数,如果它能被7整除,或者它的十进制表示法中某一位上的数字为7,则称其为与7相关的数。现求所有小于等于n(n < 1…… 题解列表 2023年01月01日 0 点赞 0 评论 350 浏览 评分:0.0