Techno News Latest, Whatsapp, Samsung, How To Flash, MediaTek device, Sony Flash Tool Original, Free Browsing, Transfer Contacts, Moto Shop, Walton Primo, price and specification

C# Program to check number is prime or composite

C# Program to check number is prime or composite - we should be concerned about the technology that continues to grow, because the technology is created to facilitate our lives, with technology we can do any job faster so save time and money, ok on the blog Techno News Latest we will discuss a variety of new technologies that continue to grow, now we will membahs first about C# Program to check number is prime or composite please see to finish:

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

}




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 : , , ,
Share on Facebook
Share on Twitter
Share on Google+

Related : C# Program to check number is prime or composite

0 komentar:

Posting Komentar