Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
#include <iostream> int main() { int l = 50, w = 21, h = 15; int boxvolume = l * w * h; std::cout << "box volume = " << boxvolume << " cm^3" << std::endl; } /* run: box volume = 15750 cm^3 */