Question

Q.2)) (12.5 marks) Write a program which prints a multiplication table (i.e. 1*n=2, 2*n=?.... 12*n=?). Allow the user to dete
0 0
Add a comment Improve this question Transcribed image text
Answer #1

SOLUTION:

PROGRAM:

#include <stdio.h>

int main()
{
int i, value, table;
printf("Enter the value to print it's table: ");
scanf("%d", &value);
printf("\nThe table of %d is...\n\n ",value);
for(i=1; i<=10; i++)
{
table = value * i;
printf("%d * %d = %d\n", value, i, table);
}

return 0;
}

OUTPUT:

Enter the value to print it's table: 5                                                                                        

The table of 5 is...                                                                                                          

5 * 1 = 5                                                                                                                    

5 * 2 = 10  

5 * 3 = 15                                                                                                                    

5 * 4 = 20                                                                                                                    

5 * 5 = 25                                                                                                                    

5 * 6 = 30                                                                                                                    

5 * 7 = 35                                                                                                                    

5 * 8 = 40

5 * 9 = 45                                                                                                                    

5 * 10 = 50   

FLOW CHART START Declare var. value, table Read the value No i=10 =10 Yes STOP table= valuex Print table i++

Add a comment
Know the answer?
Add Answer to:
Q.2)) (12.5 marks) Write a program which prints a multiplication table (i.e. 1*n=2, 2*n=?.... 12*n=?). Allow...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Write a program that prints out multiplication table: 1. In the main loop, it should ask...

    Write a program that prints out multiplication table: 1. In the main loop, it should ask a user to enter a number in the range of 1 to 12. Exit the program upon input out of range (eg., 0 or 13). 2. Output the multiplication table from 1 to 12. Possible output: Enter the number (1-12): 9 9 * 1 = 9 9 * 2 = 18 9 * 3 = 27 9 * 4 = 36 9 * 5...

  • Write a program which: 1. Prints out the Multiplication Table for a range of numbers (positive...

    Write a program which: 1. Prints out the Multiplication Table for a range of numbers (positive integers). • Prompts the user for a starting number: say 'x' • Prompts the user for an ending number: say 'y' • Prints out the multiplication table of 'x' up to the number 'y' SPECIFIC REQUIREMENTS 1. You must use the following method to load the array: public static void loadArray(int table[][], int x, int y) 2. You must use the following method to...

  • Write an algorithm that prints a multiplication table for up to 9 times 9. As an...

    Write an algorithm that prints a multiplication table for up to 9 times 9. As an example, a multiplication table up to 3 times 3 looks like: 4 6 How might you change your algorithm to allow the user to specify the size of the table?

  • Write a program which: Prints out the Multiplication Table for a range of numbers (positive integers)....

    Write a program which: Prints out the Multiplication Table for a range of numbers (positive integers). Prompts the user for a starting number: say 'x' Prompts the user for an ending number: say 'y' Prints out the multiplication table of 'x' up to the number 'y' Sample outputs include:    SPECIFIC REQUIREMENTS You must use the following method to load the array: public static void loadArray(int table[ ][ ], int x, int y) You must use the following method to...

  • Using java E6.17 Write a program that prints a multiplication table, like this: 1 2 3...

    Using java E6.17 Write a program that prints a multiplication table, like this: 1 2 3 4 56 7 8 9 10 2 4 6 8 10 12 14 16 18 20 3 6 9 12 15 18 21 24 27 30 10 20 30 40 50 60 70 80 90 100

  • In C++ The Multiplication Program Step 1: Write a program that stores a multiplication table in...

    In C++ The Multiplication Program Step 1: Write a program that stores a multiplication table in a 9-by-9 two-dimensional array. Generate the multiplication table with two loops. (So you will have a nested loop that will iterate 9 times and fill the 9x9 array with the values.) Step 2: Display the table for the user to see it. a 9x9 table Step 3: Create a function that returns the product of two numbers between 1 and 9by looking up the...

  • Question 1 - while .. else loop Write a Python program to create the multiplication table...

    Question 1 - while .. else loop Write a Python program to create the multiplication table (from 1 to 12) of a number that is given by the user. Example: User keyed in number 5 Output: Multiplication Table for 5 1 x 5 = 5 2 x 5 = 10 . . . 10 x 5 = 50 11 x 5 = 55 12 x 5 = 60

  • 2. Use function to write a program that prints all prime numbers in a range of...

    2. Use function to write a program that prints all prime numbers in a range of a user input numbers. a. Draw a flow chart for the function IsaPrimenumber [5 marks] b. Draw a flow chart for the whole scenario [10 marks] c. Convert the flow charts to a c program. [15 marks] In C programming language

  • in Java programming Using IF statement, write a program that prints multiplication table for 1-10. Sample...

    in Java programming Using IF statement, write a program that prints multiplication table for 1-10. Sample Program Output. 1     2     3     4     5     6     7     8     9     10       1     1     2     3     4     5     6     7     8     9     10       2     2     4     6     8     10    12    14    16    18    20       3     3     6     9     12    15    18    21    24    27    30       4     4     8     12    16    20    24    28    32    36    40       5     5     10   ...

  • 1. Write a program that takes a number as input and check whether the number is...

    1. Write a program that takes a number as input and check whether the number is positive, negative or zero. 2. Write a C++ program that prompts the user to enter a number and checks whether the entered number is even or odd. 3.  Using switch-case statement write a C++ program that prompts the user to enter 1, 2 or 3 and display "Red" if selection is 1, "Yellow" if selection is 2, or "Green" if selection is 3. 4. Write...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT