Determines whether a number is a prime number.

Source: Internet
Author: User
// Determine a number, whether it is a prime number int A = 0; printf ("enter a number:"); // output bool istrue = yes; // The flag bit to indicate the status. scanf ("% d", & A); // enter for (INT I = 2; I <A; I ++) {if (a % I = 0) {istrue = No ;}}if (istrue = Yes) {printf ("this is a prime number");} else {printf ("This is not a prime number ");}
// Method 2: int A = 0; printf ("enter a number:"); scanf ("% d", & ); // use the for loop to determine for (INT I = 2; I <A; I ++) {if (a % I = 0) {printf ("this number is not a prime number"); break ;}} printf ("loop ends ");


This article from "a long time back to one" blog, please be sure to keep this source http://lulun426.blog.51cto.com/9197884/1538355

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.