ADVT POST

Volume Of Cuboid Java Program

VOLUME OF CUBOID JAVA PROGRAM

public class b_volumeofcuboid {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
int l,b,h,voc;
l=30;
b=20;
h=10;
voc=l*b*h;
System.out.println("vol of cuboid="+voc);
    }

}



Share on Google Plus
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.