Wednesday, September 9, 2020

Prime Numbers From 1 To 350 in C

 A simple program to display a series of numbers from 1 to 350 using a C programming language.

I am currently accepting programming work inventory system, enrollment system, accounting system, point of sale, school programming assignments and projects, payroll system, information system, website design and development using WordPress, IT projects, school and application development, programming projects, thesis, and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. 

Thank you. My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com. My mobile number here in the Philippines is 09173084360. My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675. Here in Bacolod City, Negros Occidental I also accepting computer repair, web development using WordPress, Computer Networking, and Arduino Project development at a very affordable price. My personal website is http://www.jakerpomperada.com


Program Listing

/* prime.c 

   Author   : Jake Rodriguez Pomperada,MAED-IT,MIT

   Date     : September 8, 2020

   Email    : jakerpomperada@gmail.com

   Location : Bacolod City,Negros Occidental Philippines */

#include <stdio.h>


int main()

{

int i=0,flag=0,low=1, high=350;

printf("\n\n");

printf("\tList of Prime Numbers form 1 To 350");

printf("\n\n");

   while (low < high) {

      flag = 0;


      if (low <= 1) {

         low++;

         continue;

      }


      for (i = 2; i <= low / 2; ++i) {


         if (low % i == 0) {

            flag = 1;

            break;

         }

      }

      if (flag == 0)

         printf("%d ", low);

    low++;

   }

}


No comments:

Post a Comment