青年歌手大奖赛_评委会打分 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n, nums[100], i, min, max, cheak1 = 0, cheak2 = 0; …… 题解列表 2017年12月01日 0 点赞 0 评论 1081 浏览 评分:0.0
哥德巴赫曾猜测 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, j, k, n, count, count1; int num[10000]; scan…… 题解列表 2017年12月01日 0 点赞 0 评论 712 浏览 评分:0.0
数列排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, n, l, x, min; int num[20]; scanf("%d", &n); …… 题解列表 2017年12月01日 0 点赞 0 评论 814 浏览 评分:0.0
IP判断 (C语言代码) 摘要:解题思路:分别判断每一段是否合法即可注意事项:1的ASCII码值是49参考代码:#include <stdio.h> #include <ctype.h>//使用isdigit函数 int mai…… 题解列表 2017年12月02日 1 点赞 0 评论 730 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.4 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int i, j, x; int a[9],b[9]; //输入数组 printf("请任意输入九个不相…… 题解列表 2017年12月02日 0 点赞 0 评论 955 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char str[100],temp; int i,j; gets(str);…… 题解列表 2017年12月02日 1 点赞 0 评论 1017 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char str1[100],str2[100]; gets(str1); g…… 题解列表 2017年12月02日 1 点赞 0 评论 700 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.7 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char str[100]; int i; gets(str); for(…… 题解列表 2017年12月02日 2 点赞 0 评论 943 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.8 (C语言代码) 摘要:#include <stdio.h> #include <string.h> int main() { char str[100]; int i,j; gets(str); fo…… 题解列表 2017年12月02日 1 点赞 0 评论 900 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:解题前,请看这两条:尝试使用print、scanff的多种格式控制符输出结果。 2. 理解asc码、字符和数字的关系,尝试相互转化。 所以答案尽可能用print、scanff的多种格…… 题解列表 2017年12月02日 0 点赞 0 评论 800 浏览 评分:0.0