#include #include #include struct Cylinder { double radius; double height; }; int main () { std::vector cylinders { Cylinder { 2.5 , 2.3 }, Cylinder { 3.4 , 1.6 }, Cylinder { 1.9 , 4.5 }, Cylinder { 4.0 , 1.5 }, Cylinder { 3.2 , 2.0 }, Cylinder { 4.8 , 1.1 } }; double const minimum_volume {33.0}; // Skriv kod här }