How to calculate the surface area of cylinder in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        double radius = 6, height = 19;
 
        double cylinder_surface_area1 = (2 * Math.PI * radius * height) + 
                                        (2 * Math.PI * (radius * radius));
 
        double cylinder_surface_area2 = 2 * Math.PI * radius * (radius + height);
 
        Console.WriteLine("Cylinder Surface Area = " + cylinder_surface_area1);
        Console.Write("Cylinder Surface Area = " + cylinder_surface_area2);
    }
}



 
 
 
/*
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 412 views
1 answer 177 views
...