answersLogoWhite

0


Best Answer

10. input number

20. let accumulator = 0

30. if number > 0 then goto 80

40. let digit = number % 10

50. let accumulator = accumulator * 10 + digit

60. let number = number / 10

70. goto 30

80. print accumulator

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: WAP to reverse the supplied number without using string manipulators in qbasic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering
Related questions

Wap to calculate reverse of a number without loops?

Main(include.h)


What year was a Browning Sweet sixteen with serial?

A Answer cannot be supplied without you including the serial number in your question.


Which Country supplied the greatest number of leaders in the crusades?

I believe it was France which supplied 3 leaders, while Germany supplied and England supplied 1.


What benefit can using a reverse search phone number have?

When using a reverse search phone number the person you are calling can tell who you are without having to look you up manually, this will increase the chances of calls from reputable companies being answered.


What is an Adams number?

If the reverse square root of the reverse of square of a number is the number itself then it is Adam Number. For ex., 12 and 21 Take 12 square of 12 = 144 reverse of square of 12 = 441 square root of the reverse of square of 12 = 21 The reverse square root of the reverse of square of 12 = 12, then number itself. Such number is called Adam Number. cool....................


Where can one purchase a manipulator?

There are a number of retailers where one can find an industrial manipulator available for purchase including Global Spec, GCI Manipulators & Lifts and DALMEC.


What year was a Winchester 9422M 22 magnum with serial number F259054 made and if possible the submodel without the checkered wood?

With the serial number that you have supplied,your Winchester model 9422M was made in the year 1975.


Where can I find a cell phone number directory for free?

There are several "reverse lookup" sites that can be used for this. I love reverse phone directory. You will be hard pressed to be able to get this without paying a small fee, however.


What is final circuit?

A final subcircuit is the circuit which the number of points supplied do not exceed 15A


What is a final circuit?

A final subcircuit is the circuit which the number of points supplied do not exceed 15A


How you write a program in c plus plus to print plaindromic numbers from 1 to n?

To check if a number is a palindrome, reverse the number and see if it is equal to the original number. If so, the number is a palindrome, otherwise it is not. To reverse a number, use the following function: int reverse(int num, int base=10) { int reverse=0; while( num ) { reverse*=base; reverse+=num%base; num/=base; } return(reverse); }


How do you Write a C program to reverse an Integer number.?

Reference:cprogramming-bd.com/c_page2.aspx# reverse number