// // Volume.java // // // Created by Maria Eugenia Occhiuto on Tue Oct 05 2004. // Copyright (c) 2004 __MyCompanyName__. All rights reserved. // public class Volume { public static void main (String[] args) { final double bottVol =2.0; final double lattVol = 0.355; int bottNum = 4; int lattNum = 10; double totale = bottVol * bottNum + lattVol * lattNum; System.out.println("Volume totale " + totale + " litri"); }}