Lab Price = $5
Please feel free to send us your queries at: [email protected]
Payment methods
Assume that counter and exitCondition are Integer variables. Describe precisely the output produced by the following segment for the test inputs 6 and 2.
Dim counter As Integer
Dim exitCondition As Integer = 5
counter = CInt(System.Console.ReadLine())
Do While (counter < exitCondition)
System.Console.WriteLine(counter.ToString("N0"))
counter = counter + 1
Loop
(Points : 10)