Question: C Programming Create a program to display the following multiplication table: NOTE: Your program must display the headings X-VALUE, Y-VALUE, and PRODUCT of X-VALUE and
C Programming
Create a program to display the following multiplication table: NOTE: Your program must display the headings X-VALUE, Y-VALUE, and PRODUCT of X-VALUE and Y-VALUE in three separate columns NOTE: Your program must use one of the repetition structures (i.e., for loop, while loop or do ... while loop) NOTE: The X-VALUE must start at 35 and each subsequent number must increment by 3 until it reaches 95 NOTE: There should be no entry in the multiplication table if the X-VALUE is 59

Create a program to display the following multiplication table: NOTE: Your program must display the headings X-VALUE, Y-VALUE, and PRODUCT of X-VALUE and Y-VALUE in three separate columns NOTE: Your program must use one of the repetition structures (i.e., for loop, while loop or do ... while loop) NOTE: The X-VALUE must start at 35 and each subsequent number must increment by 3 until it reaches 95 NOTE: There should be no entry in the multiplication table if the X-VALUE is 59 X-VALUE 35 38 Y-VALUE 19.2 19.2 PRODUCT of X-VALUE and Y-VALUE 35 x 19.2 = XXXXX. XX 38 X 19.2 = XXXXXXX (USING FIELD WIDTH OF 7 WITH 2 DECIMAL PLACES) (USING FIELD WIDTH OF 7 WITH 2 DECIMAL PLACES) (Skip the iteration for X-VALUE = 59) 95 19.2 95 x 19.2 = XXXXX.XX (USING FIELD WIDTH OF 7 WITH 2 DECIMAL PLACES) The Name, Student ID and Section number that appears in the output of the program should be your own, not the ones used in the sample run. Sample run 1: Name: Smith, Peter Section: 001 Student ID: 300999999 ****************** ************* ********************** X-VALUE 35 38 Y-VALUE 19.2 19.2 PRODUCT of X-VALUE and Y-VALUE 35 x 19.2 = XXXXX.XX 38 x 19.2 = XXXXX.XX (59 will not appear in this table) 95 19.2 95 x 19.2 = XXXXX.XX Press any key to continue
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
