create an application to accept a number from the user and print its next 10 consecutive numbers. repeat this program till the user wants in visual basic 6.0.
Answers
Answered by
0
your answer !!
Explanation:
Dim counter , sum As Integer
For counter=1 to 100 step 10
sum+=counter
ListBox1.Items.Add (sum)
Next
* The program will calculate the sum of the numbers as follows:
sum=0+10+20+30+40+......
hope it answers your question !!
for more such answers please follow me and mark my answer brainliest !!
tysm
Similar questions