| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 606 人关注过本帖
标题:找出素数~~~~怎么会出问题了,请高手帮忙指出
取消只看楼主 加入收藏
xx342508809
Rank: 2
等 级:论坛游民
帖 子:89
专家分:51
注 册:2010-7-28
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:2 
找出素数~~~~怎么会出问题了,请高手帮忙指出
#include<stdlib.h>
#include<stdio.h>
#include<math.h>
void main()
{
    int num[100];
    int i,j;
    for(i=0;i<20;i++)
    {
        num[i]=rand()%1000;
    }
    printf("Here is the list before of the sort\n");
    for(i=0;i<20;i++)
    {
        printf("%4d",num[i]);
    }
    printf("\nHere is the list of sushu\n");
    for(i=0;i<20;i++)
    {
        for(j=2;i%j!=0;j++)
        
        if(j>sqrt(num[i]))
            printf("%4d",num[i]);
    }
}声明下~~~第3个for和if之间空格也是代码~~~
搜索更多相关主题的帖子: 素数 
2010-10-09 11:30
xx342508809
Rank: 2
等 级:论坛游民
帖 子:89
专家分:51
注 册:2010-7-28
收藏
得分:0 
素数延伸的概念是在2到该数的平方根之间任何一个数不被整除~~~~~~~~~
2010-10-09 17:42
xx342508809
Rank: 2
等 级:论坛游民
帖 子:89
专家分:51
注 册:2010-7-28
收藏
得分:0 
#include<stdlib.h>
#include<stdio.h>
#include<math.h>
#include<time.h>
void main()
{
    int num[100];
    int i,j,k;
    for(i=0;i<20;i++)
    {
        //srand((unsigned) time(NULL));
        num[i]=rand()%1000;
    }
    printf("Here is the list before of the sort\n");
    for(i=0;i<20;i++)
    {
        printf("%4d",num[i]);
    }
    printf("\nHere is the list of sushu\n");
    for(i=0;i<20;i++)
    {
        for(j=2;j<=num[i];j++)
        {   
            if(num[i]%j==0)
            {
                break;
            }
        }
        if(j>=(int)sqrt(num[i])
            printf("%4d",num[i]);
    }
    printf("\n");
   
}
2010-10-09 18:14
快速回复:找出素数~~~~怎么会出问题了,请高手帮忙指出
数据加载中...
 
   



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

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