信息学奥赛一本通T1336-找树根和孩子 摘要:#include<map> #include<math.h> #include<vector> #include<iostream> #include<algorithm> using na…… 题解列表 2022年12月21日 0 点赞 0 评论 442 浏览 评分: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 评论 288 浏览 评分: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 评论 374 浏览 评分:0.0
成绩排序!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char name[101]; int x; int y;};int…… 题解列表 2022年12月21日 0 点赞 0 评论 235 浏览 评分:0.0
1585: 蓝桥杯算法训练VIP-链表数据求和操作(C语言) 摘要:解题思路:利用for循环创建链表并同时执行一次相加的操作,即边建立链表边求和注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Num{ in…… 题解列表 2022年12月21日 0 点赞 0 评论 290 浏览 评分:0.0
太细了!!老六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> double sum(int x,int y); int main() { int a,b; scanf("%d%d",…… 题解列表 2022年12月21日 0 点赞 0 评论 500 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){char str1[10],str2[10];scanf("%s",str1);scanf("%s",str2);…… 题解列表 2022年12月21日 0 点赞 0 评论 525 浏览 评分:8.0
[编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>struct student{ char id[50]; char na…… 题解列表 2022年12月21日 0 点赞 0 评论 374 浏览 评分: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 评论 313 浏览 评分:0.0
简简单单-c语言for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a = 1; int b; int sum = 0; i…… 题解列表 2022年12月21日 0 点赞 0 评论 389 浏览 评分:9.9