How to calculate the surface area of cylinder in VB.NET

1 Answer

0 votes
Imports System
				
Public Module Module1
	Public Sub Main()
		Dim radius As Double = 6
		Dim height As Double = 19
  
		Dim cylinder_surface_area1 As Double = (2 * Math.PI * radius * height) + 
                                               (2 * Math.PI * (radius * radius))
  
		Dim cylinder_surface_area2 As Double = 2 * Math.PI * radius * (radius + height)
  
		Console.WriteLine("Cylinder Surface Area = " + CStr(cylinder_surface_area1))
		Console.Write("Cylinder Surface Area = " + CStr(cylinder_surface_area2))
	End Sub
End Module




' run:
'  
' Cylinder Surface Area = 942.477796076938
' Cylinder Surface Area = 942.477796076938
'  

 



answered Jul 22, 2021 by avibootz

Related questions

1 answer 136 views
1 answer 129 views
1 answer 135 views
1 answer 212 views
1 answer 165 views
1 answer 183 views
1 answer 177 views
...