| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1340 人关注过本帖
标题:[求助]1--20,从中取5个数,不可重复,使它们的和等于65,用C语言该怎么编程?
只看楼主 加入收藏
feelings010
Rank: 1
等 级:新手上路
帖 子:63
专家分:0
注 册:2007-4-20
收藏
得分:0 

9楼的好像在我这里也是不可以运行啊!

2007-05-05 15:23
feelings010
Rank: 1
等 级:新手上路
帖 子:63
专家分:0
注 册:2007-4-20
收藏
得分:0 
10楼的怎么个做种法,要放在哪个位置,谢谢!
2007-05-05 15:24
福尔摩斯
Rank: 5Rank: 5
等 级:贵宾
威 望:12
帖 子:4011
专家分:370
注 册:2006-8-15
收藏
得分:0 
线性代数

自我放逐。。。
2007-05-05 19:38
snrtuu
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2007-5-4
收藏
得分:0 
回复:(宇智波斑)[求助]1--20,从中取5个数,不可重复...
#include <stdio.h>
#include <math.h>
main()
{
int i,j,k,l,m,p,temp;
int a=0,b;
FILE *pf;
int stor[5],*sum;
pf=fopen("myfile2.txt","w");
for (i=1;i<=20;i++)
for (j=i+1;j<=20;j++)
for (k=j+1;k<=20;k++)
for (l=k+1;l<=20;l++)
for (m=l+1;m<=20;m++)
{
stor[0]=i;
stor[1]=j;
stor[2]=k;
stor[3]=l;
stor[4]=m;
temp=stor[0]+stor[1]+stor[2]+stor[3]+stor[4];
if (temp==65)
{
*sum=NULL;
*sum=temp;
for (p=0;p<5;p++)
{
printf("%4d",stor[p]);
}
fprintf(pf,"%4d%4d%4d%4d%4d,sum=%6d\n",stor[0],stor[1],stor[2],stor[3],stor[4],*sum);
printf(" sum=%d\n",*sum);
sum++;
a++;
}
}
printf("number is:%4d\n",a);
fprintf(pf,"totle_number=%d",a);
printf("please enter any key to end this program!");
getchar();
}
不好意思,开始那一个,用了一个自己的函数,最近我又完善了一下,可以直接运行,而且会自动在你创建这个程序的地方新建一个TXT文档,我想这个能达到你的需要了!
2007-05-07 18:43
snrtuu
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2007-5-4
收藏
得分:0 
#include <stdio.h>
#include <math.h>
main()
{
int i,j,k,l,m,p,temp;
int a=0,b;
FILE *pf;
int stor[5],*sum;
pf=fopen("c:myfile2.txt","w");
for (i=1;i<=20;i++)
for (j=i+1;j<=20;j++)
for (k=j+1;k<=20;k++)
for (l=k+1;l<=20;l++)
for (m=l+1;m<=20;m++)
{
stor[0]=i;
stor[1]=j;
stor[2]=k;
stor[3]=l;
stor[4]=m;
temp=stor[0]+stor[1]+stor[2]+stor[3]+stor[4];
if (temp==65)
{
*sum=NULL;
*sum=temp;
for (p=0;p<5;p++)
{
printf("%4d",stor[p]);
}
fprintf(pf,"%4d%4d%4d%4d%4d,sum=%6d\n",stor[0],stor[1],stor[2],stor[3],stor[4],*sum);
printf(" sum=%d\n",*sum);
sum++;
a++;
}
}
printf("number is:%4d\n",a);
fprintf(pf,"totle_number=%d",a);
printf("please enter any key to end this program!");
getchar();
}
2007-05-07 19:01
snrtuu
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2007-5-4
收藏
得分:0 
请用我在15楼发的那个试试,直接将结果写到C:myfile2.txt! 我用的是TC 2.0.
2007-05-07 19:03
快速回复:[求助]1--20,从中取5个数,不可重复,使它们的和等于65,用C语言该怎么编 ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.058643 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved