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.
- Host: GitHub
- URL: https://github.com/ozzies-code/advancedarithmtest
- Owner: ozzies-code
- Created: 2023-07-01T20:25:14.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-01T20:29:41.000Z (almost 3 years ago)
- Last Synced: 2025-09-01T17:50:52.283Z (10 months ago)
- Size: 55.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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