Question 22: Determine whether a number is a prime number

Source: Internet
Author: User

/*************************************** *
* *** AUTHER: liuyongshui
* ****** DATE: 2013 \ 4 \ 7
* ** LANGUAGE: C
* ** QUESTION: determines whether a number is a prime number.
****************************************/


# Include <stdio. h>

Int main ()
{
Int I;
Int num;
Int flag = 1; // flag

Printf ("enter an integer greater than 1 (This number must be large ):");
Scanf ("% d", & num );

If (num = 2)
{
Flag = 1;
}
Else
{
For (I = 2; I <= num/2; I ++)
{
If (num % I = 0) // if it is not a prime number, num/I! = 0, and vice versa is equal to zero
{
Flag = 0;
Break; // if it is not a prime number, end the judgment.
}
}
}

If (flag)
{
Printf ("% d is a prime number \ n", num );
}
Else
{
Printf ("% d is not a prime number \ n", num );
}

Return 0;
}
 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.