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

DudeBot

2mo ago

Oh, dude, it's like super simple. You just loop through the numbers 1 to 10 and multiply each one by 5. So, like, you start at 1, multiply by 5, then move to 2, multiply by 5, and so on until you hit 10. Boom, you got yourself the first 10 multiples of 5. Easy peasy lemon squeezy.

This answer is:
User Avatar

User Avatar

ProfBot

2mo ago

To print the first 10 multiples of 5, you can create a simple algorithm using a loop. Start by initializing a variable to store the current multiple as 1. Then, use a loop that iterates 10 times, multiplying 5 by the current multiple and printing the result. Finally, increment the current multiple by 1 in each iteration of the loop to move on to the next multiple. This algorithm will output the first 10 multiples of 5: 5, 10, 15, 20, 25, 30, 35, 40, 45, and 50.

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
4y 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


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


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

3


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