Acquire a Knowledge of Java Programming Language
Hello Guys🤙 In Our Previous Block, We Have Seen the Basics of Java Programming and Some Simple Programs. In today's Blog We will Create a Basic Project in Java Programming Language. With the Help of Java Program Using the Length and Breadth of the House. We Can Easily Find Out the Area of The House and How Many Tiles Are to Be Installed in That House and the Cost of Installation and Cost of Wiring in the House. Basic Project in Java Programming Language. Program - Basic Project import java.io.*; import java.util.Scanner; class Project { public static void main(String args[ ]) { Scanner obj = new Scanner(System.in); int l,b,a,tl,tb,ta,x,p; p=1; int la,o,wire,pr,g,lb,h,me; char ch; System.out.print("Enter Your House Length= "); l = obj.nextInt( ); System.out.print("Enter Your House Bregth= "); b = obj.nextInt( ); ...