Tom数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n,s; while(scanf("%d",&n)!=EOF) { s=0; while(…… 题解列表 2017年12月04日 2 点赞 0 评论 876 浏览 评分:0.0
优质题解 Manchester- C语言考试练习题_排列(题目的真谛,运行很快) 摘要:解题思路:这个题目,其实告诉你,四个不同的数的全排列的得到方式:看样例选取的四个数分别为1 2 3 4,细心你会发现,题目的输出就是告诉你,四个数的全排列输出时所有数的下标情况,那么,我们只需要,几次…… 题解列表 2017年12月04日 33 点赞 19 评论 6320 浏览 评分:3.4
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000],l,i; scanf("%s",&…… 题解列表 2017年12月03日 1 点赞 0 评论 851 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ char c1='C',c2='h',c3='i',c4='n&…… 题解列表 2017年12月03日 0 点赞 0 评论 683 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:解题思路:注意事项:参考代码://max3.c#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); int an=…… 题解列表 2017年12月03日 0 点赞 0 评论 660 浏览 评分:0.0
K-进制数 (C语言代码) 摘要:解题思路:注意事项:用递归给数字一位一位赋值参考代码:#include<stdio.h>int shul=0;void pd(int n,int k,int num){ int i,j,numz,ze…… 题解列表 2017年12月03日 1 点赞 0 评论 935 浏览 评分:0.0
数字整除 (C语言代码) 摘要:解题思路:根据题目要求来写就行了(我写的具体要求可能和题目的有点偏差)注意事项:参考代码:#include <stdio.h>void main(){ int n; //输入的数 i…… 题解列表 2017年12月03日 0 点赞 2 评论 585 浏览 评分:2.0
弟弟的作业 (C语言代码) 摘要:解题思路:把这100道题放在for循环下面,然后判断答案是否正确,正确就计数,最后把总数输出即可。注意事项:参考代码:#include <stdio.h>void main(){ int a,b…… 题解列表 2017年12月03日 1 点赞 2 评论 463 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int i,nums[15],j,temp,k; for(i=0…… 题解列表 2017年12月03日 0 点赞 0 评论 673 浏览 评分:0.0
地宫取宝 (C++代码)(记忆化搜索) 摘要:#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> using namespace std; …… 题解列表 2017年12月03日 6 点赞 1 评论 1256 浏览 评分:2.7