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 :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar