answersLogoWhite

0


Best Answer

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
3y ago
This answer is:
User Avatar
User Avatar

Julie Jobanputra

Lvl 1
1y ago
It's incorrect
More answers
User Avatar

Anonymous

Lvl 1
3y ago

Ohh

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write an algorithm to print first 10 multiples of 5?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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


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


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

3


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


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.


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

print


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 qbasic program to accept a no and print it multiple table?

Cls print the multiples tables of 1 to 5 for x=1 to 5 for y=1 to 10 print x;"*";y;"=";x*y next y print print next x end