Content will come soon
/*Check a number Prime or not in C# */ Program : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Primenumber { class Program { static void Main( string [] args) { int num, flag = 0; Console .WriteLine( "Enter A number :" ); num = Convert .ToInt32( Console .ReadLine()); if (num > 0) { ...
Comments
Post a Comment