编写题解 1099: 校门外的树 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int M,L; int a[100]={0}; int b[…… 题解列表 2022年12月21日 0 点赞 0 评论 289 浏览 评分:0.0
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char id[50]; char na…… 题解列表 2022年12月21日 0 点赞 0 评论 357 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){char str1[10],str2[10];scanf("%s",str1);scanf("%s",str2);…… 题解列表 2022年12月21日 0 点赞 0 评论 506 浏览 评分:8.0
太细了!!老六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> double sum(int x,int y); int main() { int a,b; scanf("%d%d",…… 题解列表 2022年12月21日 0 点赞 0 评论 468 浏览 评分:0.0
1585: 蓝桥杯算法训练VIP-链表数据求和操作(C语言) 摘要:解题思路:利用for循环创建链表并同时执行一次相加的操作,即边建立链表边求和注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Num{ in…… 题解列表 2022年12月21日 0 点赞 0 评论 268 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 221 浏览 评分: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 评论 344 浏览 评分:0.0
[编程入门]选择排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; int secm(int x[],int y); for(…… 题解列表 2022年12月21日 0 点赞 0 评论 273 浏览 评分:0.0
信息学奥赛一本通T1336-找树根和孩子 摘要:#include<map> #include<math.h> #include<vector> #include<iostream> #include<algorithm> using na…… 题解列表 2022年12月21日 0 点赞 0 评论 423 浏览 评分:0.0
单词查找树c++(结构体+指针) 摘要:解题思路:用结构体的办法创建一棵树,外加一个全局变量nodes,每新建一个子叶,nodes加一,最后就可以得出总的结点数了注意事项:1.创建指针的时候要分配一个空间,不然程序会出错 …… 题解列表 2022年12月21日 0 点赞 0 评论 537 浏览 评分:0.0