摘要:
此题也是一道简单的程序应用题!!!关于sort函数的讲解请参考:http://www.cnblogs.com/xiohao/archive/2012/11/05/2755183.html有人么有太多好说的,注意以下格式,NULL后面没有空格,此外每个数的后面都跟了一个空格!!!祝你成功AC!!!#include<iostream>#include<algorithm>using namespace std;int main(){int n,m,A[101],B[101],C[101],i,j,k,l,count,data;while(cin>>n>&g
阅读全文
posted @ 2012-11-22 12:27
@ 小浩
阅读(386)
推荐(0)
编辑
摘要:
所实话此题那倒是不难,就是题的格式让人闹心,再没输出一个数后就输出一个空格,最后一个数没有空格!!!最后在加一个换行就ok了!!呵呵呵!!!祝你成功AC!!!#include<iostream>using namespace std;int main(){int n,m,i,j,aver,sum,k,space;while(cin>>n>>m){ space=0;//用来判断是否输出空格;j=2;for(i=1;i<=n/m;i++){aver=0,sum=0;for(k=0;k<m;j+=2,k++)sum+=j; aver=sum/m; if
阅读全文
posted @ 2012-11-22 11:41
@ 小浩
阅读(307)
推荐(0)
编辑
摘要:
此题的题意是:The initial condition : 0 0 0 0 0 …After the first operation : 1 1 1 1 1 …After the second operation : 1 0 1 0 1 …After the third operation : 1 0 0 0 1 …After the fourth operation : 1 0 0 1 1 …After the fifth operation : 1 0 0 1 0 …先把这些灯标上号,1 2 3 4 5 6 7 8 ……无穷首先全是关的,也就是全是0第一次操作 ,标号是1的倍数,全都变成
阅读全文
posted @ 2012-11-22 10:57
@ 小浩
阅读(294)
推荐(0)
编辑
摘要:
对于一个整数n,当n超过30之后,n!将会是一个比较大的数,而longlong类型将不能存储下这么大的数·,这是你只能用到高精度的知识,运用数组来存放这些数,呵呵!!看看下面的例子吧!!这是一道求1000!的例子,希望能对你有帮助!!!!#include<iostream>using namespace std;int main(){int n;int num[50001],c;int k; while(cin>>n){ memset(num,0,sizeof(num));//用0初始化!num[0]=1;for(int i=1;i<=n;i++){ c
阅读全文
posted @ 2012-11-22 09:43
@ 小浩
阅读(265)
推荐(0)
编辑