Question: Write a code in R-Programming Language for a function that produces the times table for its argument. The first 12 values for the times table
Write a code in R-Programming Language for a function that produces the times table for its argument. The first 12 values for the times table should be produced. The name of the function should be ftimes(), and when it is called with ftimes(7) the following is produced:
7 * 1 = 7
7 * 2 = 14
7 * 3 = 21
7 * 4 = 28
7 * 5 = 35
7 * 6 = 42
7 * 7 = 49
7 * 8 = 56
7 * 9 = 63
7 * 10 = 70
7 * 11 = 77
7 * 12 = 84
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
