微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

用C语言编写一个检查素数的程序?

参考以下代码实现:

#include<stdio.h>      
#include<conio.h>      
void main()      
{      
    int n,i,m=0,flag=0;    //declaration of variables.  
    clrscr();    //It clears the screen.  
    printf("Enter the number to check prime:");      
    scanf("%d",&n);      
    m=n/2;      
    for(i=2;i<=m;i++)      
    {      
        if(n%i==0)      
        {      
            printf("Number is not prime");      
            flag=1;      
            break;    //break keyword used to terminate from the loop.  
        }      
    }      
    if(flag==0)      
        printf("Number is prime");      
    getch();    //It reads a character from the keyword.  
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐