Gadget Ferrari, Z3X BOX Samsung Tool PRO, Nexbox, Octoplus Octopus Samsung Factory Reset, Ultimate Multi Tool, Android Jelly Bean, Specifications, Images and Price, Mobile Phone Tools

C# Program to check number is prime or composite

C# Program to check number is prime or composite - we should care about the technology that continues to grow, because all the technology is usually created to simplify our lives, every time there is a new technology that is embedded into the gadgets of various brands, on blogs Gadget Ferrari we will review the latest and old gadgets that start from the spec and the price ... well now we will discuss first about C# Program to check number is prime or composite please refer to the information we will convey as we always try to display complete information.

Articles : C# Program to check number is prime or composite
full Link : C# Program to check number is prime or composite
Article Csharp, Article programming, Article programs,

You can also see our article on:


C# Program to check number is prime or composite

C# Program to check entered number is prime or composite 

Program Statement:
Write a program that takes an integer as an input from user and prints if it is a prime or composite number.

Solution:
 static void Main(string[] args)
{
int num, i;
Console.WriteLine("Enter the number to check number is prime or composite");
num=Convert.ToInt32(Console.ReadLine());
i = 2;
while (i <= num - 1)
{
if (num % i == 0)
{
Console.WriteLine("composite number: "+num);
break;
}
i++;
}
if (i == num)
Console.WriteLine("prime number: " + num);
Console.ReadLine();

}




so many information about C# Program to check number is prime or composite

hopefully the infromation we provide with the title C# Program to check number is prime or composite can give you the reperency to find the gadget that suits your life.

you just read the article with the title C# Program to check number is prime or composite if you intend to bookmark or share it for more useful for others please use link https://ferraricars77.blogspot.com/2013/12/c-program-to-check-number-is-prime-or.html and if you want to get more information please visit other page.

Tag : , , ,
Share on Facebook
Share on Twitter
Share on Google+

Related : C# Program to check number is prime or composite

  • How to add jQuery pagination to any table in minute?Pagination is one of most common things we face everywhere, wherever there is no infinite scrolling. Pagination can be achieved server side with php as well, but those i ...
  • C# Program using Functions and loopsC# Program using FunctionsProgram Statement:Write a function which takes one value as parameter and display the sum of digits in the value. e.g. if user has passed 125 t ...
  • How do i begin learning code?Hello people! We Intelligent Computing are about to start a whole new section on Programming but before we start on that I would highly recommend you to read this articl ...
  • Google Analytics for Windows PhoneUpdate (9/2/12): I have created a nuget package which makes instrumenting an app even easier. Check it out here.Last week I gave a talk on Google Analytics for Windows P ...
  • C# Program to find Area of TriangleC# Program to find Area of TriangleProgram Statement:If the lengths of the sides of a triangle are denoted by a, b, and c, then area of triangle is given byArea = SS(S- ...

0 comments:

Posting Komentar