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();
}
information C# Program to check number is prime or composite has been discussed
hopefully the information we have provided with the title C# Program to check number is prime or composite can provide more knowledge for you in determining the choice of gadget that suits your needs.
you just finished reading the article C# Program to check number is prime or composite if you think this information is worth to book mark or share please use link https://puriagatsari.blogspot.com/2013/12/c-program-to-check-number-is-prime-or.html to get more information about gadget please visit other pages on this blog, thank you.
Tag :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar