Posts

Showing posts with the label qbasic program

QBASIC PROGRAM TO PRINT THE SUM O F ANY 10 NUMBERS Nims Academy 2022_see...

Image
hello dear students and friends i have uploaded new video in qbasic tutorial. Please visit to my channel Nims academy to watch full video: click here   Qbasic program to print the sum of any ten numbers: program: Rem to display the sum of any ten numbers: cls sum=0 for p=1 to 10 input "enter number";n sum=sum+n next p print "the sum of numbers is:";sum end