Explain the process of abstraction with an example?
What is difference between asp net and c# net?
What are the characteristics of c#?
How do I stop my console from closing in c#?
Differentiate between response.expires and response.expiresabsolute?
What is a string? What are the properties of a string class?
What is the use of regex in c#?
How do you read an Excel sheet in C#?
What is the difference between abstract class and interface in c#?
What are iterators?
How can I access the registry from c# code?
When a switch is said to be congested?
hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }