answersLogoWhite

0

How to divide to numbers in qbasic?

Updated: 9/24/2023
User Avatar

Wiki User

9y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: How to divide to numbers in qbasic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Do you need statement numbers in QBASIC?

Statement numbers were a feature of BASIC, and while QBASIC supports them, they are by no means necessary.


How to sort the sum of numbers in qbasic?

You use the relevant formula.


To print even nobetween 10 and 100 on qbasic command?

You need a code that can run to print even numbers between 10 and 100 using the qbasic command.


How do you find the product of five numbers in Qbasic?

Most computer languages use the asterisk, "*", for multiplication.


How do you fing the average?

You add the numbers. Then you divide by the number of numbers (i.e., if you have three numbers, you divide the sum by 3).You add the numbers. Then you divide by the number of numbers (i.e., if you have three numbers, you divide the sum by 3).You add the numbers. Then you divide by the number of numbers (i.e., if you have three numbers, you divide the sum by 3).You add the numbers. Then you divide by the number of numbers (i.e., if you have three numbers, you divide the sum by 3).


How do you write a Qbasic program to display these Numbers-0112358132134?

you do this 10 print "0112358132134" use the whole of the thing


What extension would a file saved in Qbasic have?

the extensions of qbasic are that, there are only 80 pixels to write in the qbasic


Do you divide your mean by 4 or 2?

You divide by the number of numbers - if you want the mean of three numbers you divide by 3, if you want the mean of a hundred numbers you divide by 100.


Why are rem statements important in qbasic programming?

qbasic is important because its technology


How do you divide the mean?

You add up all the numbers in the sentence then divide by how many numbers there were.


How do you add numbers in qbasic?

-- Think of a name for the sum, like 'S'.-- Tell qbasic what 'S' is the sum of.S = 41 + 61 + 2 + 84 + 136-- If you want to see it on the screen, thenPRINT Sand the sum pops up. It looks like this on the screen:324


How do you add odd numbers only in qbasic from 1 to 10?

CLS FOR eachNum%=1 TO 10 STEP 2 PRINT eachNum% NEXT