answersLogoWhite

0

Step1 : Start

Step2 : Input N=5

Step3 : Tnput T=1 to 10

Step4 : Print M=N*T

Step5 : End

Where T is table and N is

User Avatar

Sristy Gautam

Lvl 2
4y ago

What else can I help you with?

Related Questions

How do you write a program to print the first n multiples of 7?

Algorithm: multiples input: two positive integers, m and n output: print first n multiples of m i = m; for j = 1 to n print i i = i + m; next j


What is the algorithm for first 20 multiples of 3?

let x = 3 for count = 1 to 20 print x let x = x + 3 next count


How do you write and draw an algorithm in flowchart for Add 2 and 4 and print the sum?

2+4


To print the first 10 multiples of 7. (Table of first 10 terms)?

3


Write an Algorithm for multiplication table of an integer?

int firstNumber,secondNumber for(firstNumber = min; firstNumber <= max; firstNumber++); { for(secondNumber = min; secondNumber <=max; secondNumber++); int result firstNumber * secondNumber; }


Write an algorithm to print sum of all even numbers?

Start print "the sum of all even numbers is infinite" end


How write algorithm for finding the sum first ten even number?

Sum = 0 For N = 1 to 10 Sum = Sum + 2*N Next N Print Sum


How to Write a psuedocode algorithm to read in three numbers and print the highest and lowest number?

read num1 read num2 sum = num1 num2 print highest value


Did people write the English alphabet in cursive or print first?

print


How do you print all data in a Binary Search Tree?

By using Depth First Search or Breadth First search Tree traversal algorithm we can print data in Binary search tree.


How do you write an algorithm and draw a flow chart to find the area of a circle?

start read pie area circum print area print circum stop


Write a java script program to print first ten odd natural numbers in C?

Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.