C语言程序设计教程(第三版)课后习题6.8 (C语言代码) 摘要: 用了斐波那契数列的方法求解了答案。可能比较麻烦,也是另一种思路吧。float snFraction(int a);int main(int argc, char* argv[]){ float to…… 题解列表 2017年06月21日 2 点赞 0 评论 1420 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:这编译器居然不让我通过!!!!!# include<stdio.h>int main(void){ int a,b,c,max; printf("please input a b c Sepera…… 题解列表 2017年06月21日 0 点赞 0 评论 1295 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:# include<stdio.h>int main(void){ char c1,c2,c3,c4,c5; c1 = 'C'; c2 = 'h'; c3 = '…… 题解列表 2017年06月21日 0 点赞 0 评论 1295 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.1 (C语言代码) 摘要:#include<stdio.h> int main() { int int_a,int_b,i; int ComDiv; scanf("%d %d",&int_a,&int_b); …… 题解列表 2017年06月22日 0 点赞 0 评论 1576 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:#include<stdio.h>int main(){int a=0;int b=0;while(1){scanf("%d%d",&a,&b);printf("%d+%d=%d",a,b,a+b);…… 题解列表 2017年06月22日 0 点赞 0 评论 1325 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:#include<stdio.h>int main(){printf("***************");printf("hello world");printf("***************"…… 题解列表 2017年06月22日 0 点赞 0 评论 990 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.5 (C语言代码) 摘要:#include<stdio.h>int main(){ printf("**************\n"); printf("Hello World\n"); printf("****…… 题解列表 2017年06月22日 2 点赞 0 评论 1150 浏览 评分:0.0
简单的a+b (C语言代码) 摘要:# include <stdio.h>int main(void){int q a b;int q = 0;scanf("%d %d, &a, &b");if(a + b = q)printf("%d…… 题解列表 2017年06月23日 2 点赞 0 评论 1089 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include<stdio.h> void strPlus(char a[] ,char b[]); int main() { char a[1024],b[1024]; scanf(…… 题解列表 2017年06月23日 0 点赞 0 评论 1775 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题1.6 (C语言代码) 摘要:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d%d%d\n",&a,&b,&c); if(a>b) t=a; …… 题解列表 2017年06月23日 0 点赞 0 评论 1138 浏览 评分:0.0