Pure Programmer
Blue Matrix


Cluster Map

Project: Multiplication Table

Write a program to print a multiplication table from 2s to 12s. The numbers 2-12 should be printed across the column heading and 2-12 should be printed at the beginning of each row. Use the format() function with integers to compute and fill in the results of the table.

Output
$ swiftc MultiplicationTable4.swift -I . -L . -lUtils error: link command failed with exit code 1 (use -v to see invocation) ld: library not found for -lUtils clang: error: linker command failed with exit code 1 (use -v to see invocation)

Solution