C语言程序设计教程(第三版)课后习题10.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n=3,i,number=0,count=0; int arr[100]; scanf("%d",&n…… 题解列表 2017年12月15日 0 点赞 0 评论 1178 浏览 评分:0.0
班级人数 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2017年12月15日 1 点赞 0 评论 1104 浏览 评分:0.0
字符串的反码 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] ar…… 题解列表 2017年12月15日 0 点赞 0 评论 1250 浏览 评分:9.9
首字母大写 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { char s[200]; int i; while(gets(s)!=NULL){…… 题解列表 2017年12月15日 0 点赞 0 评论 1182 浏览 评分:0.0
字符串链接 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i, j, n; char s[100];…… 题解列表 2017年12月15日 0 点赞 0 评论 1143 浏览 评分:0.0
字符串内排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { int i, j, x, n; char temp,…… 题解列表 2017年12月15日 1 点赞 1 评论 1860 浏览 评分:9.9
排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, a[123], i, j, temp; while (scanf("%d",…… 题解列表 2017年12月15日 2 点赞 0 评论 1595 浏览 评分:7.0
成绩排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct student{ int age; int scor…… 题解列表 2017年12月15日 2 点赞 0 评论 1474 浏览 评分:7.1
简单的事情 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int m, n, s, i, x; double fz, fm; while (scan…… 题解列表 2017年12月15日 0 点赞 0 评论 1243 浏览 评分:0.0
矩阵转置 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int temp,a[100][100],i, j, n; scanf("%d", &n)…… 题解列表 2017年12月15日 2 点赞 1 评论 2424 浏览 评分:9.9