标题:再请教一个程序,请问错在哪?
只看楼主
cabin0120
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2006-9-6
结帖率:0
 问题点数:0 回复次数:4 
再请教一个程序,请问错在哪?

编写fun,起功能是将所有大于1小于m的非素数存如xx所指的数组中,非素数的个数通过k传回
#include <conio.h>
#include <stdio.h>

void fun( int m, int *k, int xx[] )
{ int i,j=2,z=0;
for(i=3;i<m;i++)
{
{
if(i%j==0)
{xx[z++]=i;j=2;
}
else j++;
}while(j!=2);
}
*k=z;


}

main()
{
int m, n, zz[100];
FILE *out;
clrscr();
printf( "\nPlease enter an integer number between 10 and 100: " );
scanf( "%d", &n );
fun( n, &m, zz );
printf( "\n\nThere are %d non-prime numbers less than %d: ", m, n );
for( n = 0; n < m; n++ )
printf( "\n %4d", zz[n] );

out=fopen ("out.dat", "w");
fun( 27, &m, zz );
fprintf(out, "%d", m);
for( n = 0; n < m; n++ )
fprintf(out, "\n %4d", zz[n]);
fclose (out );
getch();
}

搜索更多相关主题的帖子: include number 
2007-03-13 22:46
PcrazyC
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:5652
专家分:0
注 册:2006-10-20
得分:0 
自己先注释一下

雁无留踪之意,水无取影之心
2007-03-14 09:48
cabin0120
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2006-9-6
得分:0 
回复:(PcrazyC)自己先注释一下

自己 解决了

2007-03-14 10:19
PcrazyC
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:5652
专家分:0
注 册:2006-10-20
得分:0 
解决了,能不能把自己犯的什么错误和怎么解决的发给大家看看,以便大家学习

雁无留踪之意,水无取影之心
2007-03-14 10:27
cabin0120
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2006-9-6
得分:0 

编写fun,起功能是将所有大于1小于m的非素数存如xx所指的数组中,非素数的个数通过k传回
#include <conio.h>
#include <stdio.h>

void fun( int m, int *k, int xx[] )
{ int i,j=2,z=0;
for(i=3;i<m;i++)
{
do { /*这个地方漏了do,使之不能进入while循环*/
if(i%j==0)
{xx[z++]=i;j=2;
}
else j++;
}while(j!=2&&j<i);/*漏了j<i使得循环不能结束*/
}
*k=z;


}

main()
{
int m, n, zz[100];
FILE *out;
clrscr();
printf( "\nPlease enter an integer number between 10 and 100: " );
scanf( "%d", &n );
fun( n, &m, zz );
printf( "\n\nThere are %d non-prime numbers less than %d: ", m, n );
for( n = 0; n < m; n++ )
printf( "\n %4d", zz[n] );

out=fopen ("out.dat", "w");
fun( 27, &m, zz );
fprintf(out, "%d", m);
for( n = 0; n < m; n++ )
fprintf(out, "\n %4d", zz[n]);
fclose (out );
getch();

2007-03-17 18:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-124092-1-1.html




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

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