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();
}
quite so many infromation This is C# Program to check number is prime or composite
hopefully the information we provide about This is C# Program to check number is prime or composite can give more benefits for you in determining the gadget that suits your needs.
you just read the article with the title This is C# Program to check number is prime or composite if intend to bookmark bookmark or share please use link https://mohdrazeefrisbey.blogspot.com/2013/12/this-is-c-program-to-check-number-is.html to get more information about technology please visit other pages on this blog, thank you.
Tag :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar