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); } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.