An open API service indexing awesome lists of open source software.

https://github.com/ozzies-code/advancedarithmtest

Advanced Arithmetic Test: Perform the calculation on a variable of the square root of an Integer.
https://github.com/ozzies-code/advancedarithmtest

Last synced: 4 months ago
JSON representation

Advanced Arithmetic Test: Perform the calculation on a variable of the square root of an Integer.

Awesome Lists containing this project

README

          

# AdvancedArithmTest
Advanced Arithmetic Test: Perform the calculation on a variable of the square root of an Integer.
Visual Basic 2005.NET
Imports System.Math
Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

Dim Resultado As Double
Resultado = Sqrt(625)
TextBox1.Text = Resultado
End Sub
End Class