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

0 comments:

Posting Komentar