0 votes
169 views
in Practical Questions by (245 points)
edited
Write a program in VB (Visual Basic) to find the sum of first 100 numbers entered using DO Loop

1 Answer

0 votes
by (98.9k points)
selected by
 
Best answer
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
 Dim sum, n As Integer
 Do
 n += 1
 sum += n
 ListBox1.Items.Add(n & vbTab & sum)
 If n = 100 Then
 Exit Do
 End If
Loop while n<=1000
End Sub

Related questions

0 votes
1 answer 226 views
0 votes
1 answer 1.4k views
0 votes
1 answer 302 views

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

531 users

...