Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
public class Main { public static void main(String[] args) { int length = 50, width = 21, height = 15; int boxvolume = length * width * height; System.out.printf("box volume = %1$s cm^3" + "\r\n", boxvolume); } } /* run: box volume = 15750 cm^3 */