Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
using System; public class CalculateVolumeBox_CSharp { public static void Main(string[] args) { int l = 50, w = 21, h = 15; int boxvolume = l * w * h; Console.WriteLine("box volume = {0} cm^3", boxvolume); } } /* run box volume = 15750 cm^3 */