2014年8月2日
摘要: Problem Description输入n(n#includeint main(){ int n,i,j,flag,temp,a[100]; while(scanf("%d",&n)!=EOF&&n!=0) { for(i=0;i<n;i++) scanf... 阅读全文
posted @ 2014-08-02 11:18 gpl 阅读(160) 评论(0) 推荐(0) 编辑
  2014年8月1日
摘要: Problem Description有n(nint main(){ int n,m,i,j,e,a[100],t1,t2; while(scanf("%d%d",&n,&m)!=EOF&&(n!=0||m!=0)) { scanf("%d",&a[0]); ... 阅读全文
posted @ 2014-08-01 21:11 gpl 阅读(179) 评论(0) 推荐(0) 编辑
摘要: Problem Description有一头母牛,它每年年初生一头小母牛。每头小母牛从第四个年头开始,每年年初也生一头小母牛。请编程实现在第n年的时候,共有多少头母牛?Input输入数据由多个测试实例组成,每个测试实例占一行,包括一个整数n(0int main(){ int n,s[100],... 阅读全文
posted @ 2014-08-01 17:06 gpl 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Problem Description输入n(nint main(){ int n,i,j,a[100],m,t,e; while(scanf("%d",&n)!=EOF&&(n!=0)) //(n!=0)作用:n=0表示输入的结束,不做处理。 { for(i=... 阅读全文
posted @ 2014-08-01 11:20 gpl 阅读(216) 评论(0) 推荐(0) 编辑
  2014年7月31日
摘要: Problem Description有一个长度为n(nint main(){ int m,n,i; while(scanf("%d%d",&n,&m)!=EOF) { int sum=0,k=0,j=0; for(i=1;i<=n;i++)//不能是for(i=... 阅读全文
posted @ 2014-07-31 21:25 gpl 阅读(122) 评论(0) 推荐(0) 编辑
摘要: Problem Description青年歌手大奖赛中,评委会给参赛选手打分。选手得分规则为去掉一个最高分和一个最低分,然后计算平均得分,请编程输出某选手的得分。Input输入数据有多组,每组占一行,每行的第一个数是n(2int main(){ int n,i,j; double a... 阅读全文
posted @ 2014-07-31 20:07 gpl 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Problem Description喜欢西游记的同学肯定都知道悟空偷吃蟠桃的故事,你们一定都觉得这猴子太闹腾了,其实你们是有所不知:悟空是在研究一个数学问题!什么问题?他研究的问题是蟠桃一共有多少个!不过,到最后,他还是没能解决这个难题,呵呵^-^当时的情况是这样的:第一天悟空吃掉桃子总数一半多一... 阅读全文
posted @ 2014-07-31 16:31 gpl 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Problem Description对于表达式n^2+n+41,当n在(x,y)范围内取整数值时(包括x,y)(-39int main(){ int x,y,i,n,t,flag; while(scanf("%d%d",&x,&y)!=EOF&&(x!=0||y!=0))//又学会了一招·... 阅读全文
posted @ 2014-07-31 16:07 gpl 阅读(127) 评论(0) 推荐(0) 编辑
  2014年7月30日
摘要: Problem Description多项式的描述如下:1 - 1/2 + 1/3 - 1/4 + 1/5 - 1/6 + ...现在请你求出该多项式的前n项的和。Input输入数据由2行组成,首先是一个正整数m(mint main(){ int m,n,i,j; double s,k; ... 阅读全文
posted @ 2014-07-30 17:16 gpl 阅读(115) 评论(0) 推荐(0) 编辑
摘要: Problem Description春天是鲜花的季节,水仙花就是其中最迷人的代表,数学上有个水仙花数,他是这样定义的:“水仙花数”是指一个三位数,它的各位数字的立方和等于其本身,比如:153=1^3+5^3+3^3。现在要求输出所有在m和n范围内的水仙花数。Input输入数据有多组,每组占一行,包... 阅读全文
posted @ 2014-07-30 15:58 gpl 阅读(143) 评论(0) 推荐(0) 编辑