[Previous Homework]
[Next Homework]
Create an interactive program to print out a multiplication table based on how many rows and columns a user would like to see. Make sure that the rows and columns in the table are nicely lined up.
From Linux on the GL machine:
Make sure that you follow all the coding standards
hw14 - Functions 3 - Design, Pseudocode, Code
Create an interactive program to print out a multiplication table based on how many rows and columns a user would like to see. Make sure that the rows and columns in the table are nicely lined up.
-
Before you start coding, design and pseudocode your problem
-
Create a new file called multiply.txt
At the top, list the basic functions the program will have to perform
-
Hint: There should be more than one.
Develope your code in multiply.c to implement the pseudocode.
-
Make sure to use a structure to store your input values
From Linux on the GL machine:
-
Compile the program:
gcc -o multiply multiply.c
Run the program to make sure it works:
./multiply
Use the SUBMIT utility turn in the homework.
submit cs104_grasso hw14 multiply.c multiply
Reference Programs :
Make sure that you follow all the coding standards