What's new

Visual Basic Help visual basic

Yaboku

Forum Veteran
Joined
Oct 12, 2016
Posts
1,936
Reaction
626
Points
677
Guys paturo naman ng code neto please. Nalilito po ako sa visial basic huhu. Salamat po.

Screenshot_2022-03-15-10-01-57-81_e2d5b3f32b79de1d45acd1fad96fbb0f.jpg
Screenshot_2022-03-15-10-02-08-44_e2d5b3f32b79de1d45acd1fad96fbb0f.jpg
 

Attachments

Agree dun sa posts sa taas. Pinaka-basic pa lang yan sa vb. Aralin mo muna ung basic syntax and semantics, pati variable declarations.
Di makakatulong sayo in the long run kapag binigay ko lang yung sagot
 
You need to read this
You do not have permission to view the full content of this post. Log in or register now.

Then for the first part parang ganito

Module Module1

Sub Main()
Console.WriteLine("This program accepts inputs for the length and width of a rectangle and then compute and display its perimeter and area")
Console.Write("Enter value for length : ")
Dim length As Double = Console.ReadLine()
Console.Write("Enter value for width : ")
Dim width As Double = Console.ReadLine()
Console.WriteLine("The perimeter of the rectangle is {0}", 2 * length + 2 * width)
Console.WriteLine("The area of the rectangle is {0}", length * width)
Console.WriteLine("Press any key to continue...")
Console.ReadKey(True)
End Sub

End Module


Paki check kung magagamit mo yung same idea para sa second activity
 

Similar threads

Back
Top