C语言训练-百钱百鸡问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,z,temp; int X,Y,Z; int a=0,b=0,c=0,A[10],B[10…… 题解列表 2017年12月03日 0 点赞 0 评论 865 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double fact(int), mypow(double,int); flo…… 题解列表 2017年12月03日 0 点赞 0 评论 716 浏览 评分: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 评论 675 浏览 评分:0.0
弟弟的作业 (C语言代码) 摘要:解题思路:把这100道题放在for循环下面,然后判断答案是否正确,正确就计数,最后把总数输出即可。注意事项:参考代码:#include <stdio.h>void main(){ int a,b…… 题解列表 2017年12月03日 1 点赞 2 评论 463 浏览 评分: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 评论 938 浏览 评分: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 评论 661 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ char c1='C',c2='h',c3='i',c4='n&…… 题解列表 2017年12月03日 0 点赞 0 评论 684 浏览 评分:0.0
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
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
WU-C语言程序设计教程(第三版)课后习题6.9 (C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { float M,N,h,sumh=0,A; int i; scanf("%f%f",&…… 题解列表 2017年12月04日 13 点赞 10 评论 1658 浏览 评分:0.0