Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
#include <iostream> int main() { float length, width, height; length = 6; width = 4; height = 5; float volume = height * width * length; std::cout << "Volume of Cuboid = " << volume; return 0; } /* run: Volume of Cuboid = 120 */