演讲大赛评分 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2017年12月15日 1 点赞 0 评论 752 浏览 评分:0.0
矩阵转置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int temp,a[100][100],i, j, n; scanf("%d", &n)…… 题解列表 2017年12月15日 2 点赞 1 评论 2178 浏览 评分:9.9
简单的事情 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int m, n, s, i, x; double fz, fm; while (scan…… 题解列表 2017年12月15日 0 点赞 0 评论 803 浏览 评分:0.0
成绩排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct student{ int age; int scor…… 题解列表 2017年12月15日 2 点赞 0 评论 1291 浏览 评分:7.1
排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, a[123], i, j, temp; while (scanf("%d",…… 题解列表 2017年12月15日 2 点赞 0 评论 1359 浏览 评分:7.0
字符串内排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i, j, x, n; char temp,…… 题解列表 2017年12月15日 1 点赞 1 评论 1590 浏览 评分:9.9
字符串链接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i, j, n; char s[100]; …… 题解列表 2017年12月15日 0 点赞 0 评论 872 浏览 评分:0.0
首字母大写 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { char s[200]; int i; while(gets(s)!=NULL){ …… 题解列表 2017年12月15日 0 点赞 0 评论 992 浏览 评分:0.0
字符串的反码 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] ar…… 题解列表 2017年12月15日 0 点赞 0 评论 1058 浏览 评分:9.9
班级人数 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2017年12月15日 1 点赞 0 评论 978 浏览 评分:0.0