I'm using Visual Studio - it's easy to search on-line for the right version that supports Visual Basic. Once installed, open it and create a new "project".
@raelancesalinas61003 жыл бұрын
Where can i download this software?
@advanced_ict3 жыл бұрын
There are various versions of Visual Studio, but I think that this is the one I'm using: visualstudio.microsoft.com/vs/community/
@Mr_Bute3 ай бұрын
5:40 - Integers learn microsoft com dotnet visual-basic language-reference data-types integer-data-type? etc etc etc Integer data type (Visual Basic) Holds signed 32-bit (4-byte) integers that range in value from -2,147,483,648 through 2,147,483,647. Sub Main() Dim test As Integer For test = -2100000000 To 2000000000 Step 2000000000 / 10 ' 100000000 Console.Write(test & " ") ' simple number output 'Console.Write(String.Format("{0:n2} ", test)) ' showoff number output Next test Console.ReadKey() ' press any key Beep() ' because boring programs needs bling End Sub