Times tables

Sign in to test your solution.
// Times tables program using System; class Submission { // ------------------------- // Subprograms // ------------------------- // Procedure to output the X times table. static void times_table(int x) { } // ------------------------- // Main program // ------------------------- public static void Main(string[] args) { times_table(table); } }