[编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; int secm(int x[],int y); for(…… 题解列表 2022年12月21日 0 点赞 0 评论 242 浏览 评分:0.0
编写题解 1151: C语言训练-计算一个整数N的阶乘 摘要:import java.math.BigInteger;import java.util.Scanner;public class Main { public static void main(…… 题解列表 2022年12月21日 0 点赞 0 评论 304 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 203 浏览 评分:0.0
1585: 蓝桥杯算法训练VIP-链表数据求和操作(C语言) 摘要:解题思路:利用for循环创建链表并同时执行一次相加的操作,即边建立链表边求和注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Num{ in…… 题解列表 2022年12月21日 0 点赞 0 评论 243 浏览 评分:0.0
太细了!!老六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> double sum(int x,int y); int main() { int a,b; scanf("%d%d",…… 题解列表 2022年12月21日 0 点赞 0 评论 437 浏览 评分:0.0
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char id[50]; char na…… 题解列表 2022年12月21日 0 点赞 0 评论 341 浏览 评分:0.0
编写题解 1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int M,L; int a[100]={0}; int b[…… 题解列表 2022年12月21日 0 点赞 0 评论 258 浏览 评分:0.0
密码(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,i,s[200]; scanf("%d",&n); …… 题解列表 2022年12月21日 0 点赞 0 评论 261 浏览 评分:0.0
编写题解 1054: 二级C语言-计算素数和 摘要: #include // 引入 bool 类型头文件 #include // 引入输入输出头文件 // 定义 isprime 函数,该函数接受一个整数…… 题解列表 2022年12月21日 0 点赞 0 评论 341 浏览 评分:0.0
C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main () { int m; scanf("%d",&m); while(m!=1) { …… 题解列表 2022年12月21日 0 点赞 0 评论 281 浏览 评分:0.0