Prime Factors In C#
问题 I want to create a program in C# 2005 which calculates prime factors of a given input. i want to use the basic and simplest things, no need to create a method for it nor array things etc. just simple modulus. is there any code which fulfills what i desire? here is the code for finding simple factors, i need this code to be modified to calculate prime factors class Program { static void Main(string[] args) { int a, b; Console.WriteLine("Please enter your integer: "); a = int.Parse(Console