Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
using System; class Program { static void Main() { float length, width, height; length = 6; width = 4; height = 5; float volume = height * width * length; Console.WriteLine("Volume of Cuboid = " + volume); } } /* run: Volume of Cuboid = 120 */