Skip to content

Commit

Permalink
Create sqrt_check.vb
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan-TsoiSW authored Oct 28, 2019
1 parent d6c77b8 commit c1d82e3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions math/Check_is_square/sqrt_check.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
this is the visual basic program to check if number inputed is a square



Sub Main()
Dim num As Integer

num = Console.ReadLine()
If Math.Sqrt(num) Mod 1 = 0 Then
Console.WriteLine("it is a square ")
Else
Console.WriteLine("not a square ")
End If
Console.WriteLine()
Console.ReadKey()
End Sub

0 comments on commit c1d82e3

Please sign in to comment.