C language · Print prime number (prime number) between 1~100

Source: Internet
Author: User

Algorithm increases c++_ch02_04 time limit: 1.0s memory limit: 256.0MBThe problem description outputs the prime number between the 1~100 and displays it. Note that 1 is not a prime number. Output format outputs a prime number per line.
2
3
...
97 Note: Primes are also called prime numbers.
1#include <stdio.h>2#include <math.h>3 intMain () {4     intM,i,k,h=0, leap=1;5      for(m=2; m<= -; m++){ 6K=SQRT (m+1);7          for(i=2; i<=k;i++)8             if(m%i==0){9leap=0;Ten                  Break; One             } A         if(LEAP) { -printf"%d\n", m); -         } theleap=1; -     } -}

C language · Print prime number (prime number) between 1~100

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.