题解列表
链表之报数问题 python解法
摘要:解题思路:注意事项:参考代码:n = int(input())ls = [0] * nj = 1; p = 0for i in range(n-1):#让9个人出局 while j < 3: ……
信息学奥赛一本通T1252-走迷宫-数组标记地图题解
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; while(~scanf("%d%d", &a, &b)){ int c[……
1025: [编程入门]数组插入处理
摘要:解题思路:注意事项: #include <stdio.h>#define M 10//插入排序void insertSort(int arry[], int len){ int i; ……
拆分位数 (C语言代码)字符倒着输出
摘要:解题思路:注意事项:参考代码: printf("%c %c %c", getchar(), getchar(), getchar());……
编写题解 1146: C语言训练-舍罕王的失算
摘要:解题思路:循环相加即可,注意数值范围注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(……
简单A+B,时间相加,C实现
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d", &n); while (n--)//控制多行输出 { int a[6];……