So there are some parts of this solution I have done and some not. Can someone solve this solution? I also have the original way that it was for reference in this file. this is from visual studio from mac.
- using System;
-
- namespace Multiplicationtable {
- class MainClass {
- public static void Main(string[] args) {
-
- int num;
-
- Console.Write("Enter a number >> ");
- num = Console.Read();
-
- DisplayMultiplicationTable(num);
-
- Console.Read();
- }
-
- private static void DisplayMultiplicationTable(int num) {
-
- for (int factor = 2; xxxxx)
- Console.WriteLine(xxxx);
- }
- }
- }