题解列表

筛选

1043 三个数字的排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c;    scanf("%d%d%d", &a, &b,&c);    if(a>b) ……

小菜鸡------C语言通俗易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m;     while (~scanf("%d %d", &n, &m)) //输入n,m   ……

传染病控制Python题解

摘要:代码参考https://blog.csdn.net/qq_47780707/article/details/122612528n,p=map(int,input().split()) #链接表的第一……

二级C语言-同因查找

摘要:解题思路:for循环输入,if判断,数组接收注意事项:i的起始值参考代码:include<stdio.h>void su(int m, int n) { int i; int a[1000]; int……