Sub abcd()
Dim n As Integer, x As Integer
n = CInt(InputBox("n="))
x = 1
While x * x < n
MsgBox x * x
x = x + 1
Wend
End Sub
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Sub abcd()
Dim n As Integer, x As Integer
n = CInt(InputBox("n="))
x = 1
While x * x < n
MsgBox x * x
x = x + 1
Wend
End Sub