C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main () { int m; scanf("%d",&m); while(m!=1) { …… 题解列表 2022年12月21日 0 点赞 0 评论 382 浏览 评分:0.0
编写题解 1054: 二级C语言-计算素数和 摘要: #include // 引入 bool 类型头文件 #include // 引入输入输出头文件 // 定义 isprime 函数,该函数接受一个整数…… 题解列表 2022年12月21日 0 点赞 0 评论 452 浏览 评分:0.0
密码(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i,s[200]; scanf("%d",&n); …… 题解列表 2022年12月21日 0 点赞 0 评论 335 浏览 评分:0.0
简简单单-c语言for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 1; int b; int sum = 0; i…… 题解列表 2022年12月21日 0 点赞 0 评论 427 浏览 评分:9.9
编写题解 1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int M,L; int a[100]={0}; int b[…… 题解列表 2022年12月21日 0 点赞 0 评论 343 浏览 评分:0.0
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char id[50]; char na…… 题解列表 2022年12月21日 0 点赞 0 评论 400 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){char str1[10],str2[10];scanf("%s",str1);scanf("%s",str2);…… 题解列表 2022年12月21日 0 点赞 0 评论 548 浏览 评分:8.0
太细了!!老六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> double sum(int x,int y); int main() { int a,b; scanf("%d%d",…… 题解列表 2022年12月21日 0 点赞 0 评论 529 浏览 评分:0.0
1585: 蓝桥杯算法训练VIP-链表数据求和操作(C语言) 摘要:解题思路:利用for循环创建链表并同时执行一次相加的操作,即边建立链表边求和注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Num{ in…… 题解列表 2022年12月21日 0 点赞 0 评论 321 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 263 浏览 评分:0.0