Skip to main content

Create one Box class and find out area and volume of a box (Using parameterized method, And method should have no return type)

Create one Box class and find out area and volume of a box (Using parameterized method, And method should have no return type).




import java.util.Scanner; 
public class volumeBox { 
public static void main(String[] args) { 
Scanner sc = new Scanner(System.in); 
System.out.println("Enter the value of length: "); 
double l=sc.nextDouble(); 
System.out.println("Enter the value of width: "); 
double w=sc.nextDouble(); 
System.out.println("Enter the value of height: "); 
double h=sc.nextDouble(); 
box b1=new box(); 
System.out.println("The area of the box is "+b1.area(l, w, h)); 
System.out.println("The volume of the box is "+b1.volume(l, w, h)); 
sc.close(); 
class box{ 
public double area(double l,double w,double h){ 
return 2*(l*w+l*h+h*w); 
public double volume(double l,double w,double h){ 
return l*w*h; 
}


OUTPUT:

Enter the value of length:
5
Enter the value of width:
6
Enter the value of height:
4
The area of the box is 148.0
The volume of the box is 120.0


Comments

Popular posts from this blog

Palindrome

প্যালিনড্রোম (অর্থাৎ সামনে থেকে এবং পিছন থেকে সমান.উভয় দিক থেকে পড়লে একই!)  (ক) বাংলায় প্যালিনড্রোম বাক্য :-   সিমার মাসি   বল খেলব   বই চাইব   ঘুরবে রঘু    নাম লেখালেম না    বিকল্প কবি   তুমি কি মিতু ?   মার কথা থাক রমা   কীর্তন মঞ্চ পরে পঞ্চম নর্তকী      কাক কাঁদে কাঁক কা   চেনা সে ছেলে বলেছে সে নাচে    তাল বনে নেব লতা    চার সের চা   ঠাকুরদাদার কুঠা   খা সমস্ত রুটি রুস্তম সখা   না না কেনা না।   না বললে লব না   ওর মা আজ আমারও   বিরহে রাধা নয়ন ধারা হেরবি   থাক রবি কবির কথা   মামাতো মামা   কাকা তো কাকা   রবীন দা দানবীর। (খ) বাংলায় প্যালিনড্রোম নাম :-   নিধুরাম রাধুনি   সুবল লাল বসু   রমা কান্ত কামার   সদানন দাস   রায়মণি ময়রা   হারান রাহা     ইলু দলুই   সুবর্ণা বসু   সদাই দাস (গ) বাংলায় প্যালিনড্রোম শব্দ :- মরম, মলম, দরদ, জলজ, বনমানব, নবজীবন, সহিস, কালিকা, সরেস, তফাত, বাহবা, সন্ন্যাস,...