Techno Aspirations, Apple iPhone, SAMSUNG, Motorola Moto, Secret Codes, price, specifications, Samsung Galaxy, Clone Huawei, Flash File, Google LG Nexus

C# Program to check number is prime or composite

C# Program to check number is prime or composite - hello friends are you looking for information related to technology? ... if yes ... then you are right to come to blog Techno Aspirations because here we will display information about the latest gadgets or old ones though, well now we will discuss first about C# Program to check number is prime or composite as you are looking for, hopefully the information we will convey can answer your question to google, please see.

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();

}




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

hopefully the information we provide about C# Program to check number is prime or composite can give answer your question to google, and you feel satisfied about this.

you just finished reading the article with the title C# Program to check number is prime or composite if you feel this information need to bookmark or share please use link https://faultyaspirations.blogspot.com/2013/12/c-program-to-check-number-is-prime-or.html do not forget there are many other information in this blog, 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 komentar:

Posting Komentar