Tutorialspoint
Problem
Solution
Submissions

Multiplication Table for a Given Number

Certification: Basic Level Accuracy: 50% Submissions: 10 Points: 5

Write a C# program that generates a multiplication table for a given number up to a specified range.

Example 1
  • Input: number = 5, range = 10
  • Output:
    5 x 1 = 5
    5 x 2 = 10
    5 x 3 = 15
    5 x 4 = 20
    5 x 5 = 25
    5 x 6 = 30
    5 x 7 = 35
    5 x 8 = 40
    5 x 9 = 45
    5 x 10 = 50
  • Explanation:
    • Step 1: Multiplictionn table is created from number to the range.  
Example 2
  • Input: number = 12, range = 5
  • Output:
    12 x 1 = 12
    12 x 2 = 24
    12 x 3 = 36
    12 x 4 = 48
    12 x 5 = 60
  • Explanation:
    • Step 1: Multiplictionn table is created from number to the range.  
Constraints
  • 1 ≤ number ≤ 10^6
  • 1 ≤ range ≤ 1000
  • Time Complexity: O(range)
  • Space Complexity: O(1)
Control StructuresMathematicaleBayPhillips
Editorial

Login to view the detailed solution and explanation for this problem.

My Submissions
All Solutions
Lang Status Date Code
You do not have any submissions for this problem.
User Lang Status Date Code
No submissions found.

Please Login to continue
Solve Problems

 
 
 
Output Window

Don't have an account? Register

Solution Hints

  • Use a for loop to iterate from 1 to the given range
  • For each iteration i, calculate number * i
  • Format and print each line as "number x i = result"

Submitted Code :