idastan97

CSCI152 L1 P1

Jan 12th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. public class FirstProject {
  2.     public static void main(String[] args) {
  3.         // TODO code application logic here
  4.         int l, w, h;
  5.         l=2;
  6.         w=3;
  7.         h=4;
  8.         System.out.println("The volume of the box " + l + "x" + w + "x" + h + " is " + l*w*h);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment