Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class FirstProject {
- public static void main(String[] args) {
- // TODO code application logic here
- int l, w, h;
- l=2;
- w=3;
- h=4;
- System.out.println("The volume of the box " + l + "x" + w + "x" + h + " is " + l*w*h);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment