求Sn=1!+2!+3!+4!+5!+…+n!之值,其中n是一个数字(n不超过20)。 摘要:#include<stdio.h> int main() { int n, i; long int fact = 1, Sn = 0;//此处用long int或者long l…… 文章列表 2018年03月17日 4 点赞 0 评论 3094 浏览 评分:10.0
做题记录 摘要:1.<<setprecision(5)<< 与 <<fixed<<setprecision(4)<< 不等同2.在C/C++程序中打印变量名称#define VNAME(name) (#name) …… 文章列表 2018年03月12日 2 点赞 0 评论 653 浏览 评分:0.0
1004 母牛的故事(递归) 摘要:#include<stdio.h>int f(int m){ if(m<5) { return m; } if(m>=5) { m=f(m-1)+f(m-3); ret…… 文章列表 2018年03月05日 0 点赞 0 评论 926 浏览 评分:0.0
1127:验证尼科彻斯定理,即:任何一个正整数的立方都可以写成一串连续奇数的和。 摘要:#include<stdio.h>int main(){ int i,a,b[1000]; scanf("%d",&a); for(i=0;i<a;i++) …… 文章列表 2018年03月05日 4 点赞 0 评论 2558 浏览 评分:9.0
1014:求Sn=1!+2!+3!+4!+5!+…+n!之值,其中n是一个数字(n不超过20) 摘要:#include <stdio.h>int main(){ int n,i; long long sum=1,sn=0;//sum比较大 scanf("…… 文章列表 2018年03月04日 0 点赞 0 评论 1363 浏览 评分:0.0
1064:求1+2!+3!+4!+…+30!。科学计数法,保留两位小数。 摘要:#include <stdio.h>int main(){ int i; float sum=1,sn=0; for(i=1;i<=30;i++) …… 文章列表 2018年03月04日 0 点赞 0 评论 2581 浏览 评分:6.3
1055:编程,输入一个10进制正整数,然后输出它所对应的八进制数。 摘要:简便方法:#include<stdio.h> int main() { int n; scanf("%d",&n); printf(" 文章列表 2018年03月04日 7 点赞 0 评论 2312 浏览 评分:2.0
1065:输入10个数,找出其中绝对值最小的数,将它和最后一个数交换,然后输出这10个数。 摘要:#include<stdio.h>#include<math.h>int main(){ int a[10],min,i,n; for(i=0;i<10;i++) …… 文章列表 2018年03月04日 2 点赞 0 评论 1858 浏览 评分:9.9
1764题,题解 摘要:我是小白,不知道我对此题的解答是否正确且简洁,欢迎指点,互相进步。此题我认为需要一个变量来控制循环次数,我选择的c来控制循环1000次,a与d的关系我并不是很能表达清楚,自己领悟,解答如下#inclu…… 文章列表 2018年03月02日 2 点赞 0 评论 688 浏览 评分:0.0
确定比赛次序 摘要:描述有N个比赛队(1<=N<=500),编号依次为1,2,3,。。。。,N进行比赛,比赛结束后,裁判委员会要将所有参赛队伍从前往后依次排名,但现在裁判委员会不能直接获得每个队的比赛成绩,只知道每场比赛…… 文章列表 2018年03月02日 0 点赞 0 评论 1231 浏览 评分:0.0