去掉双斜杠注释 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[500]; int i,j,k,flag; while(get…… 题解列表 2018年02月10日 0 点赞 0 评论 1757 浏览 评分:0.0
C语言训练-"水仙花数"问题1 (C语言代码) 摘要:解题思路:首先把一个三位数的每一位数分解出来,然后立方求和。注意事项:注意分解每一位不要弄错。参考代码:#include<stdio.h>int main(){ int i,a,b,c; scanf(…… 题解列表 2018年02月09日 1 点赞 0 评论 1498 浏览 评分:0.0
字符串内排序 (C语言代码) 摘要:#include <stdio.h>#include <string.h>int main(){ int i=0,j; char t,a[201]; while(get…… 题解列表 2018年02月09日 0 点赞 0 评论 1248 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)。。。。。。。 摘要:解题思路:写了两个函数,具体看代码。注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<malloc.h>int swapp(int *aa,i…… 题解列表 2018年02月09日 0 点赞 0 评论 1784 浏览 评分:0.0
【夏禾】题解1069:2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:O(n)的写法依次输入矩阵数字 找出最大的数及其对应的行和列注意事项:具体的行列获取需要仔细斟酌参考代码:#include<stdio.h>#include<stdlib.h>int mai…… 题解列表 2018年02月09日 2 点赞 0 评论 1484 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:解题思路:注意事项:int类型不够大,要用long类型,输出记得加"ld"参考代码:#include <stdio.h>#include<math.h>int main(){ int i,j,n; l…… 题解列表 2018年02月09日 0 点赞 0 评论 1102 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.3 (C语言代码) 摘要:解题思路:注意事项:提示代码太短,不通过???参考代码:#include <stdio.h>#include<math.h>int main(){ int i,a=2,n; double Sn=0; …… 题解列表 2018年02月09日 0 点赞 0 评论 1525 浏览 评分:0.0
诡秘的余数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[101]; int a[101],m; int i,j,k,r…… 题解列表 2018年02月09日 0 点赞 0 评论 2495 浏览 评分:9.9
愚蠢的摄影师 (C语言代码)超时了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int n,sum;int a[56],b[56];void dfs(int k){ int i,j,t…… 题解列表 2018年02月09日 0 点赞 0 评论 2123 浏览 评分:0.0
【夏禾】题解1016:C语言程序设计教程(第三版)课后习题6.6 摘要:解题思路:遍历100 -> 999 的每个数 , 取出其中符合要求的数。包括对每个数 各个位的提取。(百位,十位 ,个位)。:D注意事项:会使用for循环 , 对编程语言中 整除 和 取余有一定初步…… 题解列表 2018年02月09日 1 点赞 0 评论 1606 浏览 评分:0.0