C二级辅导-阶乘数列 (C语言代码) 摘要:思路:用循环做出阶乘,然后累加就行了答案:#include<stdio.h> int main(){ int i; double sum=0,a=1; for(i=1;i<=30;i++…… 题解列表 2017年06月17日 1 点赞 0 评论 967 浏览 评分:0.0
DNA (C语言代码) 摘要:解题思路以及注意事项:代码比较长,大家可以静下心来直接看代码,有详细注释 x x小图形的样子由a决定,比如a=3,则小图形的样子是x x &nbs 题解列表 2017年08月14日 25 点赞 6 评论 2495 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.1 (C语言代码) 摘要:#include "stdio.h"int dc(int a,int b){ int r; while(1) { r=a%b; if(r==0)return b; a=b; b=r; }}in…… 题解列表 2017年06月17日 0 点赞 0 评论 891 浏览 评分:0.0
母牛的故事 (C语言代码) 摘要:#include<stdio.h>int main(){ int old = 1, new1 = 0, new2 = 0, new3 = 0, year, total; printf("please …… 题解列表 2017年06月17日 9 点赞 2 评论 1338 浏览 评分:0.0
C二级辅导-阶乘数列 (C语言代码) 摘要:题目分析 阶乘 分两步 一个乘一个累加代码#include<stdio.h> int main() { int i; double j=1,sum=0;//注意了 这么大累…… 题解列表 2017年06月17日 0 点赞 0 评论 1085 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.4 (C语言代码) 摘要:#include <stdio.h>int main(){ int i; long n,s=1,c=0;//定义long变量,题目N在20以内不需要long long scanf("%d",&n); …… 题解列表 2017年06月17日 0 点赞 0 评论 1765 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:#include<stdio.h> int main(){ int h,f,d,a,u,e,w,i,q,n,m; float l,g,y,s,o; scanf("%d %d",&m,&n); if(…… 题解列表 2017年06月18日 3 点赞 0 评论 1158 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:#include "stdio.h"#include "string.h"int a(char str1[],char str2[]){ int i; for(i=0;i<3;i++) { if(s…… 题解列表 2017年06月18日 0 点赞 0 评论 1610 浏览 评分:0.0
Tom数 (C语言代码) 摘要:#include<stdio.h>int main(){ unsigned int m,j,sum=0;//既然是小于2的32次方的整数,那么就适合用无符号整型数 while(scanf("%u",&…… 题解列表 2017年06月18日 1 点赞 0 评论 1091 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.5 (C语言代码) 摘要:#include "stdio.h"main(){int n,i=0,j=1,k;scanf("%d",&n);int a[n];for(k=0;k<n;k++){a[k]=k+1;}while(n>…… 题解列表 2017年06月18日 0 点赞 1 评论 600 浏览 评分:0.0