题解列表

筛选

字符串链接 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i, j, n; char s[100]; ……

排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, a[123], i, j, temp; while (scanf("%d",……

成绩排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h>  struct student{      int age;      int scor……

简单的事情 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int m, n, s, i, x; double fz, fm; while (scan……

矩阵转置 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int temp,a[100][100],i, j, n; scanf("%d", &n)……

演讲大赛评分 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a……

检查金币 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] ……

做幻方 (C语言代码)

摘要:解题思路: 令第一行中间的数为1,然后按箭头循环,最后倒序输出。               参考代码:#include <stdio.h> int main() { int n, i, j,……

特殊排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, a[1234], i, j, temp; while (scanf("%d"……