<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Inheritance exercise by Zuraihah Ngadengon</title>
      <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb</link>
      <description>Made with good vibes</description>
      <language>en-us</language>
      <pubDate>2018-08-26 04:38:55 UTC</pubDate>
      <lastBuildDate>2026-01-24 23:51:04 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Exercise</title>
         <author>zu_ngadungon</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275351746</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/269391642/66dad2a86ea148ea8642a060baa1dfb5/Capture.png" />
         <pubDate>2018-08-26 04:40:06 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275351746</guid>
      </item>
      <item>
         <title>coding(ameer)</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275779588</link>
         <description><![CDATA[<div>Shape1.java<br><br>class Shape1<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape(double length,double width){<br>		<br>		this.length=length;<br>		this.width=width;<br>	}<br>	<br>	public void getArea(double length,double width){<br>	<br>	area=length*width;<br>	System.out.println("Area is "+area);<br>	}<br>	<br>}<br><br>Rectangle.java<br><br>class Rectangle extends Shape1{<br><br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height){<br>	<br>	this.height=height;<br>	}<br>	public void getVolume(double length,double width,double height){<br>	<br>	volume=length*width*height;<br>	System.out.println("volume is "+volume);<br>	<br>	}<br>	<br>	public static void main(String[]args){<br>		<br>		double a=10.1,b=22.0,c=2.0;<br>		Rectangle demo = new Rectangle();<br>		demo.getVolume(a,b,c);<br>		demo.getArea(a,b);<br>		<br><br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304197328/e6e8111b5366cd86437bc1a0754cffee/coding_Rectangle.jpg" />
         <pubDate>2018-08-28 06:28:56 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275779588</guid>
      </item>
      <item>
         <title>Halim bin Sayadi </title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275783026</link>
         <description><![CDATA[<div>Shape1.java <br><br>public class Shape1<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void getShape (double length, double width)<br>	{<br>		this.length = length;<br>		this.width = width;<br>	}<br>	<br>	public void getArea(double length, double width)<br>	{<br>		area = length * width;<br>		System.out.println ("The Area is " + area);<br>	}<br><br>}<br><br>Rectangle.java<br>class Rectangle extends Shape1 <br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>		this.height = height;<br><br>	}<br>	<br>	public void getVolume(double length, double width, double height)<br>	{<br>		volume =length * width * height;<br>		System.out.println ("The Volume is " + volume);<br>	}<br>	<br>	public static void main (String [] args)<br>	{<br>		double p = 10.2, q = 11.5, r = 5.1;<br>		Rectangle x = new Rectangle();<br>		x.getVolume(p,q,r);<br>		x.getArea(p,q);<br>	}<br>}<br><br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304998509/ff694e0ac04258d3e9ce6ad35353ec21/Capture.png" />
         <pubDate>2018-08-28 06:49:27 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275783026</guid>
      </item>
      <item>
         <title>Fahmi</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275786835</link>
         <description><![CDATA[<div>Shape1.java<br>public class Shape1  <br>{ <br>   <br>   protected double length; <br>   protected double width; <br>   private double area;<br>  <br>    <br>   public void setShape (double length, double width)   <br>   {<br>    this.length=length; <br>	this.width=width;<br> <br>   } <br>    <br>	public void getArea(double length, double width) <br>	{ <br>	   area=length*width; <br>	   System.out.println("Area is" +area);<br>	} <br>	<br>}	<br><br>Rectangle.java <br>public class Rectangle extends Shape1 <br>  { <br>    private double height; <br>	private double volume; <br>	<br>	<br>	  public void setRectangle (double hieght)<br>    { <br>	   this.height=height; <br>    } <br><br>      public void getVolume(double length,double width,double height)<br>	  <br>    { <br>      volume=length*height*width; <br>      System.out.println("voulume is" +volume);	  <br>    } <br><br><br>	public static void main(String[] args)  <br>	{<br>	double <br>	a=10.0,b=20.0,c=30.0; <br>	Rectangle demo= new Rectangle(); <br>	demo.getVolume(a,b,c); <br>	demo.getArea(a,b); <br>  	}<br>  }	  </div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304737511/36dd6e17309a3579b24a2ffafda0ae0a/Shape1.png" />
         <pubDate>2018-08-28 07:10:01 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275786835</guid>
      </item>
      <item>
         <title>NURFATIN AFIQAH BINTI MUSTAFAR</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275788193</link>
         <description><![CDATA[<div>public class Shape<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape(double length, double width)<br>	{<br>		this.length=length;<br>		this.width=width;<br>		<br>	}<br><br>	public void getArea(double length,double width)<br>	{<br>		area=length*width;<br>		System.out.println("The area is: " + area);<br>		<br>	}<br>}<br>public class Rectangle extends Shape<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle (double height)<br>	{<br>		this.height=height;<br>	}<br>	<br>	public void getVolume(double length,double width,double height)<br>	{<br>		volume=length*width*height;<br>		System.out.println("The volume is: " + volume);<br>	}<br>	<br>	public static void main(String [] args)<br>	{<br>		double c=12.2,d=5.5,e=7.8;<br>		Rectangle a = new Rectangle();<br>		a.getArea(c,d);<br>		a.getVolume(c,d,e);<br>		<br>	}<br>}	</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304727746/e0466589dd530b99ea92689f368b2bd0/Capture.png" />
         <pubDate>2018-08-28 07:17:53 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275788193</guid>
      </item>
      <item>
         <title>khaliq</title>
         <author>iammrpotato28</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275789622</link>
         <description><![CDATA[<div>public class Shape1<br>{<br><br>		protected double length,width;<br>		private double area;<br>		<br>		public void setShape(double length,double width)<br>		{<br>			this.length=length;<br>			this.width=width;<br>		}<br>		<br>		public void getArea()<br>		{<br>			area=length*width;<br>			System.out.println ("the area is:"+area);<br>		}<br>		public static void main (String[]args)<br>		{<br>		<br>		}<br>}<br>public class Rectangle extends Shape1&nbsp;<br>{<br>	private double height,volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>		this.height=height;<br>	}<br>	public void getVolume(double length,double width,double height)<br>	{<br>		volume=length*width*height;<br>		System.out.println ("the volume is:"+volume);<br>	}<br>	public static void main (String[]args)<br>	{<br>		Rectangle a =new Rectangle();<br>		a.height=(2);<br>		Rectangle b=new Rectangle();<br>		b.getVolume(3,4,5);	<br>		Shape1 c=new Shape1();<br>		c.setShape(6,7);<br>		c.getArea();<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/301993505/f2ba0e180bd70a7d498ae4b180b849f3/Capture.jpg" />
         <pubDate>2018-08-28 07:26:59 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275789622</guid>
      </item>
      <item>
         <title>Hanis Hafiz</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275789981</link>
         <description><![CDATA[<div><br>public class Bentuk<br>{<br>	private double area;<br>	protected double length;<br>	protected double width;<br>		public void setShape(double length, double width)<br>		{<br>			this.length=length;<br>			this.width=width;<br>		}<br><br>		public void getArea()<br>		{<br>			area=length*width;<br>			System.out.println("\nArea : "+area);<br>		}<br>}<br><br>public class Petak extends Bentuk<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>	this.height=height;<br>	}<br><br>	public void getVolume(double width,double length)<br>	{<br>		volume=length*width*height;<br>		System.out.println("Volume is: "+volume);<br>	}<br><br>	public static void main(String[]args)<br>	{<br>		Bentuk bersegi=new Bentuk();<br>		bersegi.setShape(12,8);<br>		bersegi.getArea();<br>		Petak berpetak=new Petak();<br>		berpetak.setRectangle(9);<br>		berpetak.getVolume(12,8);<br>		<br>		<br>	}<br>}<br><br><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-08-28 07:29:26 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275789981</guid>
      </item>
      <item>
         <title>Muhd Ikmal</title>
         <author>ikmalmohd61</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275790554</link>
         <description><![CDATA[<div>Shape.java<br><br>public class Shape<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	public void setShape(double length, double width)<br>	{<br>		this.length = length;<br>		this.width = width;<br>	}<br>	<br>	public void getArea(double length, double width)<br>	{<br>		area = length*width;<br>		<br>		System.out.println("Area is : " + area);<br>	}<br>}<br><br>Rectangle.java<br><br>class Rectangle extends Shape<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>		this.height = height;<br>	}<br>	<br>	public void getVolume(double height, double width, double length)<br>	{<br>		volume = length*width*height;<br>		<br>		System.out.println("volume is : " + volume);<br>	}<br>	<br>	public static void main (String[]args)<br>	{<br>		double length = 5.00;<br>		double width = 5.00;<br>		double height = 5.00;<br>		<br>		Rectangle total = new Rectangle();<br>		<br>		total.getArea(length,width);<br>		total.getVolume(length,width,height);<br>		<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/215892410/145f22e59c98a765bb823d3d2f32cec7/Screenshot__19_.png" />
         <pubDate>2018-08-28 07:32:53 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275790554</guid>
      </item>
      <item>
         <title>NURIZLIN NATASHA</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275791322</link>
         <description><![CDATA[<div>class Shape {<br>&nbsp; &nbsp; protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape (double length, double width ) {<br>	&nbsp; &nbsp; this.length = length;<br>		this.width = width;<br>		<br>		}<br>		<br>		public void getArea (double length, double width) {<br>		<br>		area= length * width;<br>		<br>		System.out.println ( "the Area of Rectangle is :" + area );<br>		<br>		}<br>		}<br>	<br>public class Rectangle extends Shape {<br>&nbsp;&nbsp;<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle (double height ) {<br>	&nbsp; &nbsp; this.height = height;<br>		<br>		}<br>		<br>	public void getVolume () {<br><br>	volume= (length * width) * height;<br>		<br>	System.out.println ( "the volume of Rectangle is :" + volume );<br>	<br>	<br>		<br>		}<br>		public static void main(String args[]){<br>&nbsp; &nbsp; &nbsp; &nbsp; double a = 10;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; double b = 5;<br>		double c = 8;<br>&nbsp; &nbsp; &nbsp; &nbsp; Rectangle obj = new Rectangle();<br>&nbsp; &nbsp; &nbsp; &nbsp; obj.setShape(a, b);<br>&nbsp; &nbsp; &nbsp; &nbsp; obj.getArea(a, b);<br>&nbsp; &nbsp; &nbsp; &nbsp; obj.setRectangle(c);<br>		obj.getVolume();<br>		}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/303328062/4c322fd6c16b4c2c31d5ca7f635ced09/rect.png" />
         <pubDate>2018-08-28 07:36:51 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275791322</guid>
      </item>
      <item>
         <title>Nurul Amiza Mohd Rizal</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275791382</link>
         <description><![CDATA[<div>class Shape <br>{ 	<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape(double length, double width)<br>	{<br>		this.length=length;<br>		this.width=width;<br>	}<br>	 <br>	public void getArea()<br>	{<br>		area=length*width;<br>		System.out.print("The area of the rectangle is : " + area );	<br>	}<br>}<br>class Rectangle extends Shape<br>{<br>	private double height;<br>	private double volume;<br>	<br>public void setRectangle(double height)<br>	{<br>		this.height=height;<br>	}<br>		<br>public void getVolume()<br>	{<br>		volume=length*width*height;<br>		System.out.print("The volume of the rectangle is :" + volume );<br>	}	<br><br>public static void main(String args [])<br>	{<br>		double length=19.7, width=7.0, height=16.0;<br>		Rectangle obj = new Rectangle();<br>		obj.setShape(length, width);<br>		obj.getArea();<br>		System.out.println();<br>		obj.setRectangle(height);<br>		obj.getVolume();<br>	}		<br>}<br><br> 	</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305391735/9f221d353e65450c4c338314eca43ecf/1.png" />
         <pubDate>2018-08-28 07:37:08 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275791382</guid>
      </item>
      <item>
         <title>Mohamad Aiman</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275792021</link>
         <description><![CDATA[<div>Shape1.java<br><br>public class Shape1<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape(double length, double width)<br>	{<br>		this.length = length;<br>		this.width = width;<br>	}<br>	<br>	public void getArea(double length, double width)<br>	{<br>		area = length * width;<br>		System.out.println("The Area is  : " + area);<br>	}<br>	<br>}<br><br>Rectangle.java<br><br>class Rectangle extends Shape1<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>	this.height = height;<br>	}<br>	<br>	public void getVolume(double height, double length, double width)<br>	{<br>		volume = height * length * width;<br>		System.out.println("The Volume is : " + volume);<br>	}<br>	<br>	public static void main(String args[])<br>	<br>	{<br>		double q = 8.8, r = 9.9, b = 11.1;<br>		<br>		Rectangle man = new Rectangle();<br>		man.getVolume(q,r,b);<br>		man.getArea(q,r);<br>	}<br>	<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304737009/66856f8b8b3fdc2ea6bb00faa2439e52/exercise_oop.png" />
         <pubDate>2018-08-28 07:40:44 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275792021</guid>
      </item>
      <item>
         <title>farisyah munawwarah moh d samudin</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275792035</link>
         <description><![CDATA[<div>public class Shape<br>{<br>protected double length;<br>protected double width;<br>private double area;<br><br>public void setShape (double length,double width){<br>this.length = length;<br>this.width = width;<br>}<br><br>public void getArea(double length,double width){<br> area = length*width;<br> System.out.println("The area is:"+area);<br> <br> }<br>}<br>RECTANGLE<br>public class Rectangle extends Shape<br>{<br>private double height;<br>private double volume;<br><br>public void setRectangle (double height){<br>this.height = height;<br>}<br>public void getVolume(double length,double width,double height){<br>	volume = length*width*height;<br>	System.out.println("The volume is:"+volume);<br>	<br>	}<br>	public static void main(String[] args)<br>	{<br>		double x=24.0,y=9.0,z=30.0;<br>		Rectangle a = new Rectangle();<br>		a.getArea(x,y);<br>		a.getVolume(x,y,z);<br>	}<br>}<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304300096/e26a8b5f0b55cd3fbb25737f8d76cfc1/rect1.png" />
         <pubDate>2018-08-28 07:40:51 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275792035</guid>
      </item>
      <item>
         <title>Muhammad Azlan</title>
         <author>azlanjasmani</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275794325</link>
         <description><![CDATA[<div>Shape.java<br><br>class Shape<br>{<br>   protected double length;<br>   protected double width;<br>   private double area;<br>   <br>   public void setShape (double length,double width)<br>   <br>    {<br>	 this.length = length;<br>	 this.width = width;<br>	}<br>	<br>   public void getArea(double length,double width)<br>   <br>   {<br>    area =length*width;<br>	System.out.println("The Area is " + area);<br>   }<br>   <br>}   <br><br>Rectangle.java<br><br>class Shape<br>{<br>   protected double length;<br>   protected double width;<br>   private double area;<br>   <br>   public void setShape (double length,double width)<br>   <br>    {<br>	 this.length = length;<br>	 this.width = width;<br>	}<br>	<br>   public void getArea(double length,double width)<br>   <br>   {<br>    area =length*width;<br>	System.out.println("The Area is " + area);<br>   }<br>   <br>}   <br>	 <br>   <br><br>	 <br>   </div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/285346888/89bce1f1c722e1a07a29c45ca64e46b6/excercise.png" />
         <pubDate>2018-08-28 07:57:28 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275794325</guid>
      </item>
      <item>
         <title>Muhammad Fadzlullah </title>
         <author>muhdfadzlullah19</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275794343</link>
         <description><![CDATA[<div>Shapes.java<br>class Shapes<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShapes(double length, double width)<br>	{<br>	<br>		this.length = length ;<br>		this.width = width ;<br>		<br>	}<br>	<br>	public void getArea(double length, double width)<br>	{<br>		area = length * width ;<br>		<br>		System.out.println("Area is: " + area);<br>	}<br>}<br>Rectangle.java<br>class Rectangle extends Shapes<br>{<br>	private double volume;<br>	private double height;<br>	<br>	public void setRectangle(double height)<br>	{<br>		this.height=height;<br>	}<br>	public void getVolume(double length, double width, double height)<br>	{<br>		<br>		volume = length * width * height ;<br>		System.out.println("volume is " + volume );<br>	}<br><br><br>public static void main (String[] args)<br>{<br>	 double a = 12.1,b = 23.0,c = 3.0;<br>	<br>	<br>	Rectangle demo = new Rectangle();<br>	demo.getVolume(a,b,c);<br>	demo.getArea(a,b);<br>	<br>}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/215892407/b7f73e16abf92771a829d607911dcb3a/Capture.png" />
         <pubDate>2018-08-28 07:57:40 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275794343</guid>
      </item>
      <item>
         <title>NUR ADHWA&#39; NABILA </title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275795769</link>
         <description><![CDATA[<div>Shape.java<br><br>class Shape<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape(double length,double width)<br>	{<br>	<br>		this.length = length;<br>		this.width = width;<br>	}<br>	<br><br>	public void getArea()<br>	{<br>		area = length * width;<br>		<br>		System.out.print("Area of rectangle : " + area);<br>	<br>	}<br>}<br><br><br>Shape.java<br><br>class Rectangle extends Shape<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>		this.height = height;<br>	}<br>	<br>	public void getVolume()<br>	{<br>		volume = length*width*height;<br>		<br>		System.out.print("Volume of retangle :" + volume);<br>	}<br>	<br>	public static void main(String[]args)<br>	{<br>		double length = 5.5;<br>		double width = 2.5;<br>		double height = 4.2;<br>		<br>		Rectangle obj = new Rectangle();<br>				<br>		obj.setShape(length,width);<br>		obj.getArea();<br>		<br>		System.out.println();<br>		<br>		obj.setRectangle(height);<br>		obj.getVolume();<br>	}<br>}<br>	<br>	<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304737019/d7504aac8e3a324db59ffd1d6f61cd3d/i.png" />
         <pubDate>2018-08-28 08:08:41 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275795769</guid>
      </item>
      <item>
         <title>NUR SYAQIRAH NAIMAH</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275796241</link>
         <description><![CDATA[<div>public class Shape<br>{<br>	private double area;<br>	protected double length;<br>	protected double width;<br>		public void setShape(double length, double width)<br>		{<br>			this.length=length;<br>			this.width=width;<br>		}<br><br>		public void getArea()<br>		{<br>			area=length*width;<br>			System.out.println("\nArea : "+area);<br>		}<br>}<br>public class Rectangle extends Shape<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public static void main(String[]args)<br>	{<br>		Shape bersegi=new Shape();<br>		bersegi.setShape(24,12);<br>		bersegi.getArea();<br>		Rectangle berpetak=new Rectangle();<br>		berpetak.setRectangle(4cmd);<br>		berpetak.getVolume(24,12);<br>	}<br>	<br>	public void setRectangle(double height)<br>	{<br>	this.height=height;<br>	}<br><br>	public void getVolume(double width,double length)<br>	{<br>		volume=length*width*height;<br>		System.out.println("Volume is: "+volume);<br>	}<br>}<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/307316323/01e847bd9b821d52aa55ae8ad602237d/Capture.png" />
         <pubDate>2018-08-28 08:12:27 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275796241</guid>
      </item>
      <item>
         <title>RAJA AIMAN FITRI</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275798931</link>
         <description><![CDATA[<div>Shape.java<br>class Shape<br>{<br>	protected  double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape(double length,double width)<br>	{<br>		this.length = length;<br>		this.width = width;<br>	}<br>	<br>	public void getArea()<br>	{<br>		area = length * width;<br>		System.out.println("Area = " + area);<br>	}<br>}<br>Rectangle.java<br>class Rectangle extends Shape<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>		this.height = height;<br>	}<br>	<br>	public void getVolume()<br>	{<br>		volume = length * width * height;<br>		System.out.println("Volume = " + volume);<br>	}<br>	<br>	public static void main (String args[])<br>	{<br>		double length=4.2,width=10.0,height=12.5;<br>		<br>		Rectangle obj = new Rectangle();<br>		<br>		obj.setShape(length,width);<br>		obj.getArea();<br>		System.out.println();<br>		obj.setRectangle(height);<br>		obj.getVolume();<br>	}<br>}<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305383986/3a00cf6ac7f58f3e2a1a033d168edbca/Capture.png" />
         <pubDate>2018-08-28 08:30:21 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275798931</guid>
      </item>
      <item>
         <title>SUMITHRRA A/P RAVI</title>
         <author>vzhi26</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275799335</link>
         <description><![CDATA[<div>SHAPE<br>public class Shape<br>{<br>protected double length;<br>protected double width;<br>private double area;<br><br>public void setShape (double length,double width){<br>this.length = length;<br>this.width = width;<br>}<br><br>public void getArea(double length,double width){<br> area = length*width;<br> System.out.println("Area is:"+area);<br> <br> }<br>}<br><br><br>RECTANGLE<br>public class Rectangle extends Shape<br>{<br>private double height;<br>private double volume;<br><br>public void setRectangle (double height){<br>this.height = height;<br>}<br>public void getVolume(double length,double width,double height){<br>	volume =(length*width)*height;<br>	System.out.println("Volume is:"+volume);<br>	<br>	}<br>	public static void main(String[] args)<br>	{<br>		double m=20,n=8,o=16;<br>		Rectangle obj = new Rectangle();<br>		obj.getArea(m,n);<br>		obj.getVolume(m,n,o);<br>	}<br>}<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/266032762/5493e8a62bfd79f11662dd6afcc612bf/OOP.png" />
         <pubDate>2018-08-28 08:33:09 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275799335</guid>
      </item>
      <item>
         <title>TENGKU ANIS ROSEDIANA </title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275799656</link>
         <description><![CDATA[<div>class Shape1<br>{<br>	protected double length;<br>	protected double width;<br>	private double area;<br>	<br>	public void setShape1(double length,double width)<br>	{<br>	<br>		this.length = length;<br>		this.width = width;<br>	}<br>	<br><br>	public void getArea()<br>	{<br>		area = length * width;<br>		<br>		System.out.print("Area of rectangle : " + area);<br>	<br>	}<br>}<br><br><br>class Rectangle1 extends Shape1<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle1(double height)<br>	{<br>		this.height = height;<br>	}<br>	<br>	public void getVolume()<br>	{<br>		volume = length*width*height;<br>		<br>		System.out.print("The Total Volume Of Rectangle :" + volume);<br>	}<br>	<br>	public static void main(String[]args)<br>	{<br>		double length = 4.5;<br>		double width = 2.5;<br>		double height = 3.5;<br>		<br>		Rectangle1 obj = new Rectangle1();<br>				<br>		obj.setShape1(length,width);<br>		obj.getArea();<br>		<br>		System.out.println();<br>		<br>		obj.setRectangle1(height);<br>		obj.getVolume();<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/307316323/3f679dcfae28855ca40a4613bca2fbaf/anis.png" />
         <pubDate>2018-08-28 08:35:16 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275799656</guid>
      </item>
      <item>
         <title>ITS ME HILMI</title>
         <author>hilmi_taro33</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275801091</link>
         <description><![CDATA[<div>public class Shape<br>{<br>	private double area;<br>	protected double length, width;<br><br>	public void setShape(double length, double width)<br>	{<br>		this.length = length;<br>		this.width = width;<br>	}<br>&nbsp;<br>	public void getArea()<br>	{<br>		area = length*width;&nbsp;<br>		System.out.print("Area is : " + area);<br>	}<br>}<br><br>public class Rectangle extends Shape<br>{<br>	private double height;<br>	private double volume;<br>	<br>	public void setRectangle(double height)<br>	{<br>		this.height = height;<br>	}<br><br>	public void getVolume(double length, double width)<br>	{<br>		volume = length*width*height;<br>		System.out.println("\nThe volume is : " + volume);<br>	}<br>	public static void main(String[]args)<br>	{<br>		Shape x = new Shape();<br>		x.setShape(12,6);<br>		x.getArea();<br>		Rectangle y = new Rectangle();<br>		y.setRectangle(9);<br>		y.getVolume(10,12);<br>	}<br>}<br><br><br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304199450/43876459f3f5a9cf6260f4955c2627de/Capturela.jpg" />
         <pubDate>2018-08-28 08:45:36 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275801091</guid>
      </item>
      <item>
         <title>ELAVEYNI RAVI</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275801177</link>
         <description><![CDATA[<div>SHAPE<br>public class Shape<br>{<br>protected double length;<br>protected double width;<br>private double area;<br><br>public void setShape (double length,double width){<br>this.length = length;<br>this.width = width;<br>}<br><br>public void getArea(double length,double width){<br>&nbsp;area = length*width;<br>&nbsp;System.out.println("The area is:"+area);<br>&nbsp;<br>&nbsp;}<br>}<br><br>RECTANGLE<br><br>public class Rectangle extends Shape<br>{<br>private double height;<br>private double volume;<br><br>public void setRectangle (double height){<br>this.height = height;<br>}<br>public void getVolume(double length,double width,double height){<br>	volume =(length*width)*height;<br>	System.out.println("The volume is:"+volume);<br>	<br>	}<br>	public static void main(String[] args)<br>	{<br>		double x=30,y=18,z=4;<br>		Rectangle a = new Rectangle();<br>		a.getArea(x,y);<br>		a.getVolume(x,y,z);<br>	}<br>}	</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305419908/a81c3a165d73eda71b53dc534339de54/OOP.png" />
         <pubDate>2018-08-28 08:46:23 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275801177</guid>
      </item>
      <item>
         <title>nurnabilah binti mohd zubir</title>
         <author>athirahsyafiqah_rahmad</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275802112</link>
         <description><![CDATA[<div><strong><em>superclass</em></strong><br>public class Shape<br>{<br>  protected double length;<br>  protected double width;<br>  private double area;<br>  <br>  public void setShape(double length, double width)<br>  {<br>   this.length = length;<br>   <br>   this.width = width;<br>   <br>   }<br>   public void getArea(double length, double width)<br>   {<br>   area = length*width;<br>   System.out.println("Area of shape : " + area);<br>   }<br>   }<br><br><strong><em>Subclass</em></strong><br>public class Rectangle extends Shape<br>{<br>    private double height;<br>	private double volume;<br>	<br>	public void setRectangle (double height)<br>	{<br>	this.height=height;<br>	<br>	}<br>	public void getVolume(double length,double width,double height)<br>	{<br>	volume = length*width*height;<br>	System.out.println("Volume of Rectangle : " + volume);<br>	}<br>	public static void main(String[] args)<br>	{<br>	  double x=25.0, y=5.0 , z=20.0;<br>	  Rectangle a = new Rectangle();<br>	  a.getArea(x,y);<br>	  a.getVolume(x,y,z);<br>	}<br>}<br><br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/274876218/a58ba2b25133e644b3b841a8986c21af/rectangle.png" />
         <pubDate>2018-08-28 08:52:37 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275802112</guid>
      </item>
      <item>
         <title>Pathmahn</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275804652</link>
         <description><![CDATA[<pre>public class Shape{

  protected double length;
  protected double width;
  private double area;

  public void setShape (double length,double width){

    this.length = length;
    this.width = width;
  }

  public void getArea(double length,double width){

    area=length*width;
    System.out.println("Area = " + area);
  }


}public class Rectangle extends Shape{

  private double height;
  private double volume;

  public void setRectangle(double height){

    this.height=height;
  }

  public void getVolume(double length,double width,double height){

    volume = length*width*height;

    System.out.println("Volume = " + volume);
  }

  public static void main(String[] args){

    double x = 40.0;
    double y = 50.0;
    double z = 60.0;


    Rectangle Rec = new Rectangle();

    Rec.getVolume(x,y,z);
    Rec.getArea(x,y);



  }


}</pre><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/307327284/342760c073a77cbb1ae9daec5b90ae03/Screenshot__29_.png" />
         <pubDate>2018-08-28 09:11:14 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/275804652</guid>
      </item>
      <item>
         <title></title>
         <author>zu_ngadungon</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/277821870</link>
         <description><![CDATA[Pathmahn
Pathmahn
public class Shape{

  protected double length;
  protected double width;
  private double area;

  public void setShape (double length,double width){

    this.length = length;
    this.width = width;
  }

  public void getArea(double length,double width){

    area=length*width;
    System.out.println("Area = " + area);
  }


}public class Rectangle extends Shape{

  private double height;
  private double volume;

  public void setRectangle(double height){

    this.height=height;
  }

  public void getVolume(double length,double width,double height){

    volume = length*width*height;

    System.out.println("Volume = " + volume);
  }

  public static void main(String[] args){

    double x = 40.0;
    double y = 50.0;
    double z = 60.0;


    Rectangle Rec = new Rectangle();

    Rec.getVolume(x,y,z);
    Rec.getArea(x,y);



  }


}

Naveen
Naveen
Shape
public class Shape
{
  protected double length;  protected double width;  private double area;

  public void setShapeExtends(double length,double width)
  {
    this.length=length;
    this.width=width;
  }
  public void getArea(double length,double width)
  {
    area=length*width;
    System.out.println("Area="+area);
  }
 }
Rectangle
public class Rectangle extends ShapeExtends
{
  private double height;
  private double volume;

  public void setRectangle(double height)
  {
    this.height=height;
  }

  public void getVolume(double length,double width,double height)
  {
    volume=length*width*height;
    System.out.println("Volume="+volume);
  }

  public static void main(String[] args)
  {
    double x=5.0;
    double y=6.0;
    double z=7.0;

     Rectangle zed=new Rectangle();

     zed.getArea(x,y);
     zed.getVolume(x,y,z);


  }
}
ITS ME HILMI
ITS ME HILMI
public class Shape
{
	private double area;
	protected double length, width;

	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
 
	public void getArea()
	{
		area = length*width; 
		System.out.print("Area is : " + area);
	}
}

public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}

	public void getVolume(double length, double width)
	{
		volume = length*width*height;
		System.out.println("\nThe volume is : " + volume);
	}
	public static void main(String[]args)
	{
		Shape x = new Shape();
		x.setShape(12,6);
		x.getArea();
		Rectangle y = new Rectangle();
		y.setRectangle(9);
		y.getVolume(10,12);
	}
}




ELAVEYNI RAVI
ELAVEYNI RAVI
SHAPE
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("The area is:"+area);
 
 }
}

RECTANGLE

public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume =(length*width)*height;
	System.out.println("The volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double x=30,y=18,z=4;
		Rectangle a = new Rectangle();
		a.getArea(x,y);
		a.getVolume(x,y,z);
	}
}	
nurnabilah binti mohd zubir
nurnabilah binti mohd zubir
superclass
public class Shape
{
  protected double length;
  protected double width;
  private double area;
  
  public void setShape(double length, double width)
  {
   this.length = length;
   
   this.width = width;
   
   }
   public void getArea(double length, double width)
   {
   area = length*width;
   System.out.println("Area of shape : " + area);
   }
   }

Subclass
public class Rectangle extends Shape
{
    private double height;
	private double volume;
	
	public void setRectangle (double height)
	{
	this.height=height;
	
	}
	public void getVolume(double length,double width,double height)
	{
	volume = length*width*height;
	System.out.println("Volume of Rectangle : " + volume);
	}
	public static void main(String[] args)
	{
	  double x=25.0, y=5.0 , z=20.0;
	  Rectangle a = new Rectangle();
	  a.getArea(x,y);
	  a.getVolume(x,y,z);
	}
}



TENGKU ANIS ROSEDIANA
TENGKU ANIS ROSEDIANA 
class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape1(double length,double width)
	{
	
		this.length = length;
		this.width = width;
	}
	

	public void getArea()
	{
		area = length * width;
		
		System.out.print("Area of rectangle : " + area);
	
	}
}


class Rectangle1 extends Shape1
{
	private double height;
	private double volume;
	
	public void setRectangle1(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length*width*height;
		
		System.out.print("The Total Volume Of Rectangle :" + volume);
	}
	
	public static void main(String[]args)
	{
		double length = 4.5;
		double width = 2.5;
		double height = 3.5;
		
		Rectangle1 obj = new Rectangle1();
				
		obj.setShape1(length,width);
		obj.getArea();
		
		System.out.println();
		
		obj.setRectangle1(height);
		obj.getVolume();
	}
}
SUMITHRRA A/P RAVI
SUMITHRRA A/P RAVI
SHAPE
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("Area is:"+area);
 
 }
}


RECTANGLE
public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume =(length*width)*height;
	System.out.println("Volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double m=20,n=8,o=16;
		Rectangle obj = new Rectangle();
		obj.getArea(m,n);
		obj.getVolume(m,n,o);
	}
}

RAJA AIMAN FITRI
RAJA AIMAN FITRI
Shape.java
class Shape
{
	protected  double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea()
	{
		area = length * width;
		System.out.println("Area = " + area);
	}
}
Rectangle.java
class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length * width * height;
		System.out.println("Volume = " + volume);
	}
	
	public static void main (String args[])
	{
		double length=4.2,width=10.0,height=12.5;
		
		Rectangle obj = new Rectangle();
		
		obj.setShape(length,width);
		obj.getArea();
		System.out.println();
		obj.setRectangle(height);
		obj.getVolume();
	}
}

NUR SYAQIRAH NAIMAH
NUR SYAQIRAH NAIMAH
public class Shape
{
	private double area;
	protected double length;
	protected double width;
		public void setShape(double length, double width)
		{
			this.length=length;
			this.width=width;
		}

		public void getArea()
		{
			area=length*width;
			System.out.println("\nArea : "+area);
		}
}
public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public static void main(String[]args)
	{
		Shape bersegi=new Shape();
		bersegi.setShape(24,12);
		bersegi.getArea();
		Rectangle berpetak=new Rectangle();
		berpetak.setRectangle(4cmd);
		berpetak.getVolume(24,12);
	}
	
	public void setRectangle(double height)
	{
	this.height=height;
	}

	public void getVolume(double width,double length)
	{
		volume=length*width*height;
		System.out.println("Volume is: "+volume);
	}
}

NUR ADHWA' NABILA
NUR ADHWA' NABILA 
Shape.java

class Shape
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width)
	{
	
		this.length = length;
		this.width = width;
	}
	

	public void getArea()
	{
		area = length * width;
		
		System.out.print("Area of rectangle : " + area);
	
	}
}


Shape.java

class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length*width*height;
		
		System.out.print("Volume of retangle :" + volume);
	}
	
	public static void main(String[]args)
	{
		double length = 5.5;
		double width = 2.5;
		double height = 4.2;
		
		Rectangle obj = new Rectangle();
				
		obj.setShape(length,width);
		obj.getArea();
		
		System.out.println();
		
		obj.setRectangle(height);
		obj.getVolume();
	}
}
	
	

Muhammad Fadzlullah
Muhammad Fadzlullah 
Shapes.java
class Shapes
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShapes(double length, double width)
	{
	
		this.length = length ;
		this.width = width ;
		
	}
	
	public void getArea(double length, double width)
	{
		area = length * width ;
		
		System.out.println("Area is: " + area);
	}
}
Rectangle.java
class Rectangle extends Shapes
{
	private double volume;
	private double height;
	
	public void setRectangle(double height)
	{
		this.height=height;
	}
	public void getVolume(double length, double width, double height)
	{
		
		volume = length * width * height ;
		System.out.println("volume is " + volume );
	}


public static void main (String[] args)
{
	 double a = 12.1,b = 23.0,c = 3.0;
	
	
	Rectangle demo = new Rectangle();
	demo.getVolume(a,b,c);
	demo.getArea(a,b);
	
}
}
Muhammad Azlan
Muhammad Azlan
Shape.java

class Shape
{
   protected double length;
   protected double width;
   private double area;
   
   public void setShape (double length,double width)
   
    {
	 this.length = length;
	 this.width = width;
	}
	
   public void getArea(double length,double width)
   
   {
    area =length*width;
	System.out.println("The Area is " + area);
   }
   
}   

Rectangle.java

class Shape
{
   protected double length;
   protected double width;
   private double area;
   
   public void setShape (double length,double width)
   
    {
	 this.length = length;
	 this.width = width;
	}
	
   public void getArea(double length,double width)
   
   {
    area =length*width;
	System.out.println("The Area is " + area);
   }
   
}   
	 
   

	 
   
Mohamad Aiman
Mohamad Aiman
Shape1.java

public class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length * width;
		System.out.println("The Area is  : " + area);
	}
	
}

Rectangle.java

class Rectangle extends Shape1
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
	this.height = height;
	}
	
	public void getVolume(double height, double length, double width)
	{
		volume = height * length * width;
		System.out.println("The Volume is : " + volume);
	}
	
	public static void main(String args[])
	
	{
		double q = 8.8, r = 9.9, b = 11.1;
		
		Rectangle man = new Rectangle();
		man.getVolume(q,r,b);
		man.getArea(q,r);
	}
	
}
Nurul Amiza Mohd Rizal
Nurul Amiza Mohd Rizal
class Shape 
{ 	
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length=length;
		this.width=width;
	}
	 
	public void getArea()
	{
		area=length*width;
		System.out.print("The area of the rectangle is : " + area );	
	}
}
class Rectangle extends Shape
{
	private double height;
	private double volume;
	
public void setRectangle(double height)
	{
		this.height=height;
	}
		
public void getVolume()
	{
		volume=length*width*height;
		System.out.print("The volume of the rectangle is :" + volume );
	}	

public static void main(String args [])
	{
		double length=19.7, width=7.0, height=16.0;
		Rectangle obj = new Rectangle();
		obj.setShape(length, width);
		obj.getArea();
		System.out.println();
		obj.setRectangle(height);
		obj.getVolume();
	}		
}

 	
NURIZLIN NATASHA
NURIZLIN NATASHA
class Shape {
    protected double length;
	protected double width;
	private double area;
	
	public void setShape (double length, double width ) {
	    this.length = length;
		this.width = width;
		
		}
		
		public void getArea (double length, double width) {
		
		area= length * width;
		
		System.out.println ( "the Area of Rectangle is :" + area );
		
		}
		}
	
public class Rectangle extends Shape {
  
	private double height;
	private double volume;
	
	public void setRectangle (double height ) {
	    this.height = height;
		
		}
		
	public void getVolume () {

	volume= (length * width) * height;
		
	System.out.println ( "the volume of Rectangle is :" + volume );
	
	
		
		}
		public static void main(String args[]){
        double a = 10; 
        double b = 5;
		double c = 8;
        Rectangle obj = new Rectangle();
        obj.setShape(a, b);
        obj.getArea(a, b);
        obj.setRectangle(c);
		obj.getVolume();
		}
}
farisyah munawwarah moh d samudin
farisyah munawwarah moh d samudin
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("The area is:"+area);
 
 }
}
RECTANGLE
public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume = length*width*height;
	System.out.println("The volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double x=24.0,y=9.0,z=30.0;
		Rectangle a = new Rectangle();
		a.getArea(x,y);
		a.getVolume(x,y,z);
	}
}

Muhd Ikmal
Muhd Ikmal
Shape.java

public class Shape
{
	protected double length;
	protected double width;
	private double area;
	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length*width;
		
		System.out.println("Area is : " + area);
	}
}

Rectangle.java

class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume(double height, double width, double length)
	{
		volume = length*width*height;
		
		System.out.println("volume is : " + volume);
	}
	
	public static void main (String[]args)
	{
		double length = 5.00;
		double width = 5.00;
		double height = 5.00;
		
		Rectangle total = new Rectangle();
		
		total.getArea(length,width);
		total.getVolume(length,width,height);
		
	}
}
Hanis Hafiz
Hanis Hafiz

public class Bentuk
{
	private double area;
	protected double length;
	protected double width;
		public void setShape(double length, double width)
		{
			this.length=length;
			this.width=width;
		}

		public void getArea()
		{
			area=length*width;
			System.out.println("\nArea : "+area);
		}
}

public class Petak extends Bentuk
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
	this.height=height;
	}

	public void getVolume(double width,double length)
	{
		volume=length*width*height;
		System.out.println("Volume is: "+volume);
	}

	public static void main(String[]args)
	{
		Bentuk bersegi=new Bentuk();
		bersegi.setShape(12,8);
		bersegi.getArea();
		Petak berpetak=new Petak();
		berpetak.setRectangle(9);
		berpetak.getVolume(12,8);
		
		
	}
}





khaliq
khaliq
public class Shape1
{

		protected double length,width;
		private double area;
		
		public void setShape(double length,double width)
		{
			this.length=length;
			this.width=width;
		}
		
		public void getArea()
		{
			area=length*width;
			System.out.println ("the area is:"+area);
		}
		public static void main (String[]args)
		{
		
		}
}
public class Rectangle extends Shape1 
{
	private double height,volume;
	
	public void setRectangle(double height)
	{
		this.height=height;
	}
	public void getVolume(double length,double width,double height)
	{
		volume=length*width*height;
		System.out.println ("the volume is:"+volume);
	}
	public static void main (String[]args)
	{
		Rectangle a =new Rectangle();
		a.height=(2);
		Rectangle b=new Rectangle();
		b.getVolume(3,4,5);	
		Shape1 c=new Shape1();
		c.setShape(6,7);
		c.getArea();
	}
}
NURFATIN AFIQAH BINTI MUSTAFAR
NURFATIN AFIQAH BINTI MUSTAFAR
public class Shape
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length=length;
		this.width=width;
		
	}

	public void getArea(double length,double width)
	{
		area=length*width;
		System.out.println("The area is: " + area);
		
	}
}
public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle (double height)
	{
		this.height=height;
	}
	
	public void getVolume(double length,double width,double height)
	{
		volume=length*width*height;
		System.out.println("The volume is: " + volume);
	}
	
	public static void main(String [] args)
	{
		double c=12.2,d=5.5,e=7.8;
		Rectangle a = new Rectangle();
		a.getArea(c,d);
		a.getVolume(c,d,e);
		
	}
}	
Fahmi
Fahmi
Shape1.java
public class Shape1  
{ 
   
   protected double length; 
   protected double width; 
   private double area;
  
    
   public void setShape (double length, double width)   
   {
    this.length=length; 
	this.width=width;
 
   } 
    
	public void getArea(double length, double width) 
	{ 
	   area=length*width; 
	   System.out.println("Area is" +area);
	} 
	
}	

Rectangle.java 
public class Rectangle extends Shape1 
  { 
    private double height; 
	private double volume; 
	
	
	  public void setRectangle (double hieght)
    { 
	   this.height=height; 
    } 

      public void getVolume(double length,double width,double height)
	  
    { 
      volume=length*height*width; 
      System.out.println("voulume is" +volume);	  
    } 


	public static void main(String[] args)  
	{
	double 
	a=10.0,b=20.0,c=30.0; 
	Rectangle demo= new Rectangle(); 
	demo.getVolume(a,b,c); 
	demo.getArea(a,b); 
  	}
  }	  
Halim bin Sayadi
Halim bin Sayadi 
Shape1.java 

public class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void getShape (double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length * width;
		System.out.println ("The Area is " + area);
	}

}

Rectangle.java
class Rectangle extends Shape1 
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;

	}
	
	public void getVolume(double length, double width, double height)
	{
		volume =length * width * height;
		System.out.println ("The Volume is " + volume);
	}
	
	public static void main (String [] args)
	{
		double p = 10.2, q = 11.5, r = 5.1;
		Rectangle x = new Rectangle();
		x.getVolume(p,q,r);
		x.getArea(p,q);
	}
}



coding(ameer)
coding(ameer)
Shape1.java

class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width){
		
		this.length=length;
		this.width=width;
	}
	
	public void getArea(double length,double width){
	
	area=length*width;
	System.out.println("Area is "+area);
	}
	
}

Rectangle.java

class Rectangle extends Shape1{

	private double height;
	private double volume;
	
	public void setRectangle(double height){
	
	this.height=height;
	}
	public void getVolume(double length,double width,double height){
	
	volume=length*width*height;
	System.out.println("volume is "+volume);
	
	}
	
	public static void main(String[]args){
		
		double a=10.1,b=22.0,c=2.0;
		Rectangle demo = new Rectangle();
		demo.getVolume(a,b,c);
		demo.getArea(a,b);
		

	}
}
Exercise
Exercise
]]></description>
         <enclosure url="" />
         <pubDate>2018-09-05 03:04:56 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/277821870</guid>
      </item>
      <item>
         <title>Naveen</title>
         <author>naveen05299</author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/277825053</link>
         <description><![CDATA[<pre>public class Shape<br>{<br>  protected double length;<br>  protected double width;<br>  private double area;<br><br>  public void setShape(double length,double width)<br>  {<br>    this.length=length;<br>    this.width=width;<br>  }<br>  public void getArea()<br>  {<br>    area=length*width;<br>    System.out.println("Area="+area);<br>  }<br> }<br>public class Rectangle extends Shape<br>{<br>  private double height;<br>  private double volume;<br><br>  public void setRectangle(double height)<br>  {<br>    this.height=height;<br>  }<br><br>  public void getVolume()<br>  {<br><br>    volume=super.length*super.width*height;<br>    System.out.println("Volume="+volume);<br>  }<br><br>  public static void main(String[] args)<br>  {<br><br>     Rectangle obj=new Rectangle();<br><br>     obj.setShape(5.0,6.0);<br>     obj.getArea();<br><br>     obj.setRectangle(7.0);<br>     obj.getVolume();<br><br><br>  }<br>}</pre>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-05 03:28:37 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/277825053</guid>
      </item>
      <item>
         <title>Pathmahn Correction</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/277825162</link>
         <description><![CDATA[<pre>public class Shape{

  protected double length;
  protected double width;
  private double area;

  public void setShape (double length,double width){

    this.length = length;
    this.width = width;
  }

  public void getArea(){

    area=length*width;
    System.out.println("Area = " + area);
  }


}
public class Rectangle extends Shape{

  private double height;
  private double volume;

  public void setRectangle(double height){

    this.height=height;
  }

  public void getVolume(){

    volume = super.length*super.width*height;

    System.out.println("Volume = " + volume);
  }

  public static void main(String[] args){

    Rectangle Rec = new Rectangle();

    Rec.setShape(40.0,50.0);
    Rec.getArea();

    Rec.setRectangle(60.0);
    Rec.getVolume();


  }


}</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-05 03:29:18 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/277825162</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/278307545</link>
         <description><![CDATA[Pathmahn Correction
Pathmahn Correction
public class Shape{

  protected double length;
  protected double width;
  private double area;

  public void setShape (double length,double width){

    this.length = length;
    this.width = width;
  }

  public void getArea(){

    area=length*width;
    System.out.println("Area = " + area);
  }


}
public class Rectangle extends Shape{

  private double height;
  private double volume;

  public void setRectangle(double height){

    this.height=height;
  }

  public void getVolume(){

    volume = super.length*super.width*height;

    System.out.println("Volume = " + volume);
  }

  public static void main(String[] args){

    Rectangle Rec = new Rectangle();

    Rec.setShape(40.0,50.0);
    Rec.getArea();

    Rec.setRectangle(60.0);
    Rec.getVolume();


  }


}

Naveen
Naveen
public class Shape
{
  protected double length;
  protected double width;
  private double area;

  public void setShape(double length,double width)
  {
    this.length=length;
    this.width=width;
  }
  public void getArea()
  {
    area=length*width;
    System.out.println("Area="+area);
  }
 }
public class Rectangle extends Shape
{
  private double height;
  private double volume;

  public void setRectangle(double height)
  {
    this.height=height;
  }

  public void getVolume()
  {

    volume=super.length*super.width*height;
    System.out.println("Volume="+volume);
  }

  public static void main(String[] args)
  {

     Rectangle obj=new Rectangle();

     obj.setShape(5.0,6.0);
     obj.getArea();

     obj.setRectangle(7.0);
     obj.getVolume();


  }
}
Pathmahn
Pathmahn
public class Shape{

  protected double length;
  protected double width;
  private double area;

  public void setShape (double length,double width){

    this.length = length;
    this.width = width;
  }

  public void getArea(double length,double width){

    area=length*width;
    System.out.println("Area = " + area);
  }


}public class Rectangle extends Shape{

  private double height;
  private double volume;

  public void setRectangle(double height){

    this.height=height;
  }

  public void getVolume(double length,double width,double height){

    volume = length*width*height;

    System.out.println("Volume = " + volume);
  }

  public static void main(String[] args){

    double x = 40.0;
    double y = 50.0;
    double z = 60.0;


    Rectangle Rec = new Rectangle();

    Rec.getVolume(x,y,z);
    Rec.getArea(x,y);



  }


}

ITS ME HILMI
ITS ME HILMI
public class Shape
{
	private double area;
	protected double length, width;

	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
 
	public void getArea()
	{
		area = length*width; 
		System.out.print("Area is : " + area);
	}
}

public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}

	public void getVolume(double length, double width)
	{
		volume = length*width*height;
		System.out.println("\nThe volume is : " + volume);
	}
	public static void main(String[]args)
	{
		Shape x = new Shape();
		x.setShape(12,6);
		x.getArea();
		Rectangle y = new Rectangle();
		y.setRectangle(9);
		y.getVolume(10,12);
	}
}




ELAVEYNI RAVI
ELAVEYNI RAVI
SHAPE
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("The area is:"+area);
 
 }
}

RECTANGLE

public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume =(length*width)*height;
	System.out.println("The volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double x=30,y=18,z=4;
		Rectangle a = new Rectangle();
		a.getArea(x,y);
		a.getVolume(x,y,z);
	}
}	
nurnabilah binti mohd zubir
nurnabilah binti mohd zubir
superclass
public class Shape
{
  protected double length;
  protected double width;
  private double area;
  
  public void setShape(double length, double width)
  {
   this.length = length;
   
   this.width = width;
   
   }
   public void getArea(double length, double width)
   {
   area = length*width;
   System.out.println("Area of shape : " + area);
   }
   }

Subclass
public class Rectangle extends Shape
{
    private double height;
	private double volume;
	
	public void setRectangle (double height)
	{
	this.height=height;
	
	}
	public void getVolume(double length,double width,double height)
	{
	volume = length*width*height;
	System.out.println("Volume of Rectangle : " + volume);
	}
	public static void main(String[] args)
	{
	  double x=25.0, y=5.0 , z=20.0;
	  Rectangle a = new Rectangle();
	  a.getArea(x,y);
	  a.getVolume(x,y,z);
	}
}



TENGKU ANIS ROSEDIANA
TENGKU ANIS ROSEDIANA 
class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape1(double length,double width)
	{
	
		this.length = length;
		this.width = width;
	}
	

	public void getArea()
	{
		area = length * width;
		
		System.out.print("Area of rectangle : " + area);
	
	}
}


class Rectangle1 extends Shape1
{
	private double height;
	private double volume;
	
	public void setRectangle1(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length*width*height;
		
		System.out.print("The Total Volume Of Rectangle :" + volume);
	}
	
	public static void main(String[]args)
	{
		double length = 4.5;
		double width = 2.5;
		double height = 3.5;
		
		Rectangle1 obj = new Rectangle1();
				
		obj.setShape1(length,width);
		obj.getArea();
		
		System.out.println();
		
		obj.setRectangle1(height);
		obj.getVolume();
	}
}
SUMITHRRA A/P RAVI
SUMITHRRA A/P RAVI
SHAPE
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("Area is:"+area);
 
 }
}


RECTANGLE
public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume =(length*width)*height;
	System.out.println("Volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double m=20,n=8,o=16;
		Rectangle obj = new Rectangle();
		obj.getArea(m,n);
		obj.getVolume(m,n,o);
	}
}

RAJA AIMAN FITRI
RAJA AIMAN FITRI
Shape.java
class Shape
{
	protected  double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea()
	{
		area = length * width;
		System.out.println("Area = " + area);
	}
}
Rectangle.java
class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length * width * height;
		System.out.println("Volume = " + volume);
	}
	
	public static void main (String args[])
	{
		double length=4.2,width=10.0,height=12.5;
		
		Rectangle obj = new Rectangle();
		
		obj.setShape(length,width);
		obj.getArea();
		System.out.println();
		obj.setRectangle(height);
		obj.getVolume();
	}
}

NUR SYAQIRAH NAIMAH
NUR SYAQIRAH NAIMAH
public class Shape
{
	private double area;
	protected double length;
	protected double width;
		public void setShape(double length, double width)
		{
			this.length=length;
			this.width=width;
		}

		public void getArea()
		{
			area=length*width;
			System.out.println("\nArea : "+area);
		}
}
public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public static void main(String[]args)
	{
		Shape bersegi=new Shape();
		bersegi.setShape(24,12);
		bersegi.getArea();
		Rectangle berpetak=new Rectangle();
		berpetak.setRectangle(4cmd);
		berpetak.getVolume(24,12);
	}
	
	public void setRectangle(double height)
	{
	this.height=height;
	}

	public void getVolume(double width,double length)
	{
		volume=length*width*height;
		System.out.println("Volume is: "+volume);
	}
}

NUR ADHWA' NABILA
NUR ADHWA' NABILA 
Shape.java

class Shape
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width)
	{
	
		this.length = length;
		this.width = width;
	}
	

	public void getArea()
	{
		area = length * width;
		
		System.out.print("Area of rectangle : " + area);
	
	}
}


Shape.java

class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length*width*height;
		
		System.out.print("Volume of retangle :" + volume);
	}
	
	public static void main(String[]args)
	{
		double length = 5.5;
		double width = 2.5;
		double height = 4.2;
		
		Rectangle obj = new Rectangle();
				
		obj.setShape(length,width);
		obj.getArea();
		
		System.out.println();
		
		obj.setRectangle(height);
		obj.getVolume();
	}
}
	
	

Muhammad Fadzlullah
Muhammad Fadzlullah 
Shapes.java
class Shapes
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShapes(double length, double width)
	{
	
		this.length = length ;
		this.width = width ;
		
	}
	
	public void getArea(double length, double width)
	{
		area = length * width ;
		
		System.out.println("Area is: " + area);
	}
}
Rectangle.java
class Rectangle extends Shapes
{
	private double volume;
	private double height;
	
	public void setRectangle(double height)
	{
		this.height=height;
	}
	public void getVolume(double length, double width, double height)
	{
		
		volume = length * width * height ;
		System.out.println("volume is " + volume );
	}


public static void main (String[] args)
{
	 double a = 12.1,b = 23.0,c = 3.0;
	
	
	Rectangle demo = new Rectangle();
	demo.getVolume(a,b,c);
	demo.getArea(a,b);
	
}
}
Muhammad Azlan
Muhammad Azlan
Shape.java

class Shape
{
   protected double length;
   protected double width;
   private double area;
   
   public void setShape (double length,double width)
   
    {
	 this.length = length;
	 this.width = width;
	}
	
   public void getArea(double length,double width)
   
   {
    area =length*width;
	System.out.println("The Area is " + area);
   }
   
}   

Rectangle.java

class Shape
{
   protected double length;
   protected double width;
   private double area;
   
   public void setShape (double length,double width)
   
    {
	 this.length = length;
	 this.width = width;
	}
	
   public void getArea(double length,double width)
   
   {
    area =length*width;
	System.out.println("The Area is " + area);
   }
   
}   
	 
   

	 
   
Mohamad Aiman
Mohamad Aiman
Shape1.java

public class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length * width;
		System.out.println("The Area is  : " + area);
	}
	
}

Rectangle.java

class Rectangle extends Shape1
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
	this.height = height;
	}
	
	public void getVolume(double height, double length, double width)
	{
		volume = height * length * width;
		System.out.println("The Volume is : " + volume);
	}
	
	public static void main(String args[])
	
	{
		double q = 8.8, r = 9.9, b = 11.1;
		
		Rectangle man = new Rectangle();
		man.getVolume(q,r,b);
		man.getArea(q,r);
	}
	
}
Nurul Amiza Mohd Rizal
Nurul Amiza Mohd Rizal
class Shape 
{ 	
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length=length;
		this.width=width;
	}
	 
	public void getArea()
	{
		area=length*width;
		System.out.print("The area of the rectangle is : " + area );	
	}
}
class Rectangle extends Shape
{
	private double height;
	private double volume;
	
public void setRectangle(double height)
	{
		this.height=height;
	}
		
public void getVolume()
	{
		volume=length*width*height;
		System.out.print("The volume of the rectangle is :" + volume );
	}	

public static void main(String args [])
	{
		double length=19.7, width=7.0, height=16.0;
		Rectangle obj = new Rectangle();
		obj.setShape(length, width);
		obj.getArea();
		System.out.println();
		obj.setRectangle(height);
		obj.getVolume();
	}		
}

 	
NURIZLIN NATASHA
NURIZLIN NATASHA
class Shape {
    protected double length;
	protected double width;
	private double area;
	
	public void setShape (double length, double width ) {
	    this.length = length;
		this.width = width;
		
		}
		
		public void getArea (double length, double width) {
		
		area= length * width;
		
		System.out.println ( "the Area of Rectangle is :" + area );
		
		}
		}
	
public class Rectangle extends Shape {
  
	private double height;
	private double volume;
	
	public void setRectangle (double height ) {
	    this.height = height;
		
		}
		
	public void getVolume () {

	volume= (length * width) * height;
		
	System.out.println ( "the volume of Rectangle is :" + volume );
	
	
		
		}
		public static void main(String args[]){
        double a = 10; 
        double b = 5;
		double c = 8;
        Rectangle obj = new Rectangle();
        obj.setShape(a, b);
        obj.getArea(a, b);
        obj.setRectangle(c);
		obj.getVolume();
		}
}
farisyah munawwarah moh d samudin
farisyah munawwarah moh d samudin
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("The area is:"+area);
 
 }
}
RECTANGLE
public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume = length*width*height;
	System.out.println("The volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double x=24.0,y=9.0,z=30.0;
		Rectangle a = new Rectangle();
		a.getArea(x,y);
		a.getVolume(x,y,z);
	}
}

Muhd Ikmal
Muhd Ikmal
Shape.java

public class Shape
{
	protected double length;
	protected double width;
	private double area;
	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length*width;
		
		System.out.println("Area is : " + area);
	}
}

Rectangle.java

class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume(double height, double width, double length)
	{
		volume = length*width*height;
		
		System.out.println("volume is : " + volume);
	}
	
	public static void main (String[]args)
	{
		double length = 5.00;
		double width = 5.00;
		double height = 5.00;
		
		Rectangle total = new Rectangle();
		
		total.getArea(length,width);
		total.getVolume(length,width,height);
		
	}
}
Hanis Hafiz
Hanis Hafiz

public class Bentuk
{
	private double area;
	protected double length;
	protected double width;
		public void setShape(double length, double width)
		{
			this.length=length;
			this.width=width;
		}

		public void getArea()
		{
			area=length*width;
			System.out.println("\nArea : "+area);
		}
}

public class Petak extends Bentuk
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
	this.height=height;
	}

	public void getVolume(double width,double length)
	{
		volume=length*width*height;
		System.out.println("Volume is: "+volume);
	}

	public static void main(String[]args)
	{
		Bentuk bersegi=new Bentuk();
		bersegi.setShape(12,8);
		bersegi.getArea();
		Petak berpetak=new Petak();
		berpetak.setRectangle(9);
		berpetak.getVolume(12,8);
		
		
	}
}





khaliq
khaliq
public class Shape1
{

		protected double length,width;
		private double area;
		
		public void setShape(double length,double width)
		{
			this.length=length;
			this.width=width;
		}
		
		public void getArea()
		{
			area=length*width;
			System.out.println ("the area is:"+area);
		}
		public static void main (String[]args)
		{
		
		}
}
public class Rectangle extends Shape1 
{
	private double height,volume;
	
	public void setRectangle(double height)
	{
		this.height=height;
	}
	public void getVolume(double length,double width,double height)
	{
		volume=length*width*height;
		System.out.println ("the volume is:"+volume);
	}
	public static void main (String[]args)
	{
		Rectangle a =new Rectangle();
		a.height=(2);
		Rectangle b=new Rectangle();
		b.getVolume(3,4,5);	
		Shape1 c=new Shape1();
		c.setShape(6,7);
		c.getArea();
	}
}
NURFATIN AFIQAH BINTI MUSTAFAR
NURFATIN AFIQAH BINTI MUSTAFAR
public class Shape
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length=length;
		this.width=width;
		
	}

	public void getArea(double length,double width)
	{
		area=length*width;
		System.out.println("The area is: " + area);
		
	}
}
public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle (double height)
	{
		this.height=height;
	}
	
	public void getVolume(double length,double width,double height)
	{
		volume=length*width*height;
		System.out.println("The volume is: " + volume);
	}
	
	public static void main(String [] args)
	{
		double c=12.2,d=5.5,e=7.8;
		Rectangle a = new Rectangle();
		a.getArea(c,d);
		a.getVolume(c,d,e);
		
	}
}	
Fahmi
Fahmi
Shape1.java
public class Shape1  
{ 
   
   protected double length; 
   protected double width; 
   private double area;
  
    
   public void setShape (double length, double width)   
   {
    this.length=length; 
	this.width=width;
 
   } 
    
	public void getArea(double length, double width) 
	{ 
	   area=length*width; 
	   System.out.println("Area is" +area);
	} 
	
}	

Rectangle.java 
public class Rectangle extends Shape1 
  { 
    private double height; 
	private double volume; 
	
	
	  public void setRectangle (double hieght)
    { 
	   this.height=height; 
    } 

      public void getVolume(double length,double width,double height)
	  
    { 
      volume=length*height*width; 
      System.out.println("voulume is" +volume);	  
    } 


	public static void main(String[] args)  
	{
	double 
	a=10.0,b=20.0,c=30.0; 
	Rectangle demo= new Rectangle(); 
	demo.getVolume(a,b,c); 
	demo.getArea(a,b); 
  	}
  }	  
Halim bin Sayadi
Halim bin Sayadi 
Shape1.java 

public class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void getShape (double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length * width;
		System.out.println ("The Area is " + area);
	}

}

Rectangle.java
class Rectangle extends Shape1 
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;

	}
	
	public void getVolume(double length, double width, double height)
	{
		volume =length * width * height;
		System.out.println ("The Volume is " + volume);
	}
	
	public static void main (String [] args)
	{
		double p = 10.2, q = 11.5, r = 5.1;
		Rectangle x = new Rectangle();
		x.getVolume(p,q,r);
		x.getArea(p,q);
	}
}



Pathmahn Pathmahn public
 Pathmahn
Pathmahn
public class Shape{

  protected double length;
  protected double width;
  private double area;

  public void setShape (double length,double width){

    this.length = length;
    this.width = width;
  }

  public void getArea(double length,double width){

    area=length*width;
    System.out.println("Area = " + area);
  }


}public class Rectangle extends Shape{

  private double height;
  private double volume;

  public void setRectangle(double height){

    this.height=height;
  }

  public void getVolume(double length,double width,double height){

    volume = length*width*height;

    System.out.println("Volume = " + volume);
  }

  public static void main(String[] args){

    double x = 40.0;
    double y = 50.0;
    double z = 60.0;


    Rectangle Rec = new Rectangle();

    Rec.getVolume(x,y,z);
    Rec.getArea(x,y);



  }


}

Naveen
Naveen
Shape
public class Shape
{
  protected double length;  protected double width;  private double area;

  public void setShapeExtends(double length,double width)
  {
    this.length=length;
    this.width=width;
  }
  public void getArea(double length,double width)
  {
    area=length*width;
    System.out.println("Area="+area);
  }
 }
Rectangle
public class Rectangle extends ShapeExtends
{
  private double height;
  private double volume;

  public void setRectangle(double height)
  {
    this.height=height;
  }

  public void getVolume(double length,double width,double height)
  {
    volume=length*width*height;
    System.out.println("Volume="+volume);
  }

  public static void main(String[] args)
  {
    double x=5.0;
    double y=6.0;
    double z=7.0;

     Rectangle zed=new Rectangle();

     zed.getArea(x,y);
     zed.getVolume(x,y,z);


  }
}
ITS ME HILMI
ITS ME HILMI
public class Shape
{
	private double area;
	protected double length, width;

	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
 
	public void getArea()
	{
		area = length*width; 
		System.out.print("Area is : " + area);
	}
}

public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}

	public void getVolume(double length, double width)
	{
		volume = length*width*height;
		System.out.println("\nThe volume is : " + volume);
	}
	public static void main(String[]args)
	{
		Shape x = new Shape();
		x.setShape(12,6);
		x.getArea();
		Rectangle y = new Rectangle();
		y.setRectangle(9);
		y.getVolume(10,12);
	}
}




ELAVEYNI RAVI
ELAVEYNI RAVI
SHAPE
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("The area is:"+area);
 
 }
}

RECTANGLE

public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume =(length*width)*height;
	System.out.println("The volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double x=30,y=18,z=4;
		Rectangle a = new Rectangle();
		a.getArea(x,y);
		a.getVolume(x,y,z);
	}
}	
nurnabilah binti mohd zubir
nurnabilah binti mohd zubir
superclass
public class Shape
{
  protected double length;
  protected double width;
  private double area;
  
  public void setShape(double length, double width)
  {
   this.length = length;
   
   this.width = width;
   
   }
   public void getArea(double length, double width)
   {
   area = length*width;
   System.out.println("Area of shape : " + area);
   }
   }

Subclass
public class Rectangle extends Shape
{
    private double height;
	private double volume;
	
	public void setRectangle (double height)
	{
	this.height=height;
	
	}
	public void getVolume(double length,double width,double height)
	{
	volume = length*width*height;
	System.out.println("Volume of Rectangle : " + volume);
	}
	public static void main(String[] args)
	{
	  double x=25.0, y=5.0 , z=20.0;
	  Rectangle a = new Rectangle();
	  a.getArea(x,y);
	  a.getVolume(x,y,z);
	}
}



TENGKU ANIS ROSEDIANA
TENGKU ANIS ROSEDIANA 
class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape1(double length,double width)
	{
	
		this.length = length;
		this.width = width;
	}
	

	public void getArea()
	{
		area = length * width;
		
		System.out.print("Area of rectangle : " + area);
	
	}
}


class Rectangle1 extends Shape1
{
	private double height;
	private double volume;
	
	public void setRectangle1(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length*width*height;
		
		System.out.print("The Total Volume Of Rectangle :" + volume);
	}
	
	public static void main(String[]args)
	{
		double length = 4.5;
		double width = 2.5;
		double height = 3.5;
		
		Rectangle1 obj = new Rectangle1();
				
		obj.setShape1(length,width);
		obj.getArea();
		
		System.out.println();
		
		obj.setRectangle1(height);
		obj.getVolume();
	}
}
SUMITHRRA A/P RAVI
SUMITHRRA A/P RAVI
SHAPE
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("Area is:"+area);
 
 }
}


RECTANGLE
public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume =(length*width)*height;
	System.out.println("Volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double m=20,n=8,o=16;
		Rectangle obj = new Rectangle();
		obj.getArea(m,n);
		obj.getVolume(m,n,o);
	}
}

RAJA AIMAN FITRI
RAJA AIMAN FITRI
Shape.java
class Shape
{
	protected  double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea()
	{
		area = length * width;
		System.out.println("Area = " + area);
	}
}
Rectangle.java
class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length * width * height;
		System.out.println("Volume = " + volume);
	}
	
	public static void main (String args[])
	{
		double length=4.2,width=10.0,height=12.5;
		
		Rectangle obj = new Rectangle();
		
		obj.setShape(length,width);
		obj.getArea();
		System.out.println();
		obj.setRectangle(height);
		obj.getVolume();
	}
}

NUR SYAQIRAH NAIMAH
NUR SYAQIRAH NAIMAH
public class Shape
{
	private double area;
	protected double length;
	protected double width;
		public void setShape(double length, double width)
		{
			this.length=length;
			this.width=width;
		}

		public void getArea()
		{
			area=length*width;
			System.out.println("\nArea : "+area);
		}
}
public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public static void main(String[]args)
	{
		Shape bersegi=new Shape();
		bersegi.setShape(24,12);
		bersegi.getArea();
		Rectangle berpetak=new Rectangle();
		berpetak.setRectangle(4cmd);
		berpetak.getVolume(24,12);
	}
	
	public void setRectangle(double height)
	{
	this.height=height;
	}

	public void getVolume(double width,double length)
	{
		volume=length*width*height;
		System.out.println("Volume is: "+volume);
	}
}

NUR ADHWA' NABILA
NUR ADHWA' NABILA 
Shape.java

class Shape
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width)
	{
	
		this.length = length;
		this.width = width;
	}
	

	public void getArea()
	{
		area = length * width;
		
		System.out.print("Area of rectangle : " + area);
	
	}
}


Shape.java

class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume()
	{
		volume = length*width*height;
		
		System.out.print("Volume of retangle :" + volume);
	}
	
	public static void main(String[]args)
	{
		double length = 5.5;
		double width = 2.5;
		double height = 4.2;
		
		Rectangle obj = new Rectangle();
				
		obj.setShape(length,width);
		obj.getArea();
		
		System.out.println();
		
		obj.setRectangle(height);
		obj.getVolume();
	}
}
	
	

Muhammad Fadzlullah
Muhammad Fadzlullah 
Shapes.java
class Shapes
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShapes(double length, double width)
	{
	
		this.length = length ;
		this.width = width ;
		
	}
	
	public void getArea(double length, double width)
	{
		area = length * width ;
		
		System.out.println("Area is: " + area);
	}
}
Rectangle.java
class Rectangle extends Shapes
{
	private double volume;
	private double height;
	
	public void setRectangle(double height)
	{
		this.height=height;
	}
	public void getVolume(double length, double width, double height)
	{
		
		volume = length * width * height ;
		System.out.println("volume is " + volume );
	}


public static void main (String[] args)
{
	 double a = 12.1,b = 23.0,c = 3.0;
	
	
	Rectangle demo = new Rectangle();
	demo.getVolume(a,b,c);
	demo.getArea(a,b);
	
}
}
Muhammad Azlan
Muhammad Azlan
Shape.java

class Shape
{
   protected double length;
   protected double width;
   private double area;
   
   public void setShape (double length,double width)
   
    {
	 this.length = length;
	 this.width = width;
	}
	
   public void getArea(double length,double width)
   
   {
    area =length*width;
	System.out.println("The Area is " + area);
   }
   
}   

Rectangle.java

class Shape
{
   protected double length;
   protected double width;
   private double area;
   
   public void setShape (double length,double width)
   
    {
	 this.length = length;
	 this.width = width;
	}
	
   public void getArea(double length,double width)
   
   {
    area =length*width;
	System.out.println("The Area is " + area);
   }
   
}   
	 
   

	 
   
Mohamad Aiman
Mohamad Aiman
Shape1.java

public class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length * width;
		System.out.println("The Area is  : " + area);
	}
	
}

Rectangle.java

class Rectangle extends Shape1
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
	this.height = height;
	}
	
	public void getVolume(double height, double length, double width)
	{
		volume = height * length * width;
		System.out.println("The Volume is : " + volume);
	}
	
	public static void main(String args[])
	
	{
		double q = 8.8, r = 9.9, b = 11.1;
		
		Rectangle man = new Rectangle();
		man.getVolume(q,r,b);
		man.getArea(q,r);
	}
	
}
Nurul Amiza Mohd Rizal
Nurul Amiza Mohd Rizal
class Shape 
{ 	
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length=length;
		this.width=width;
	}
	 
	public void getArea()
	{
		area=length*width;
		System.out.print("The area of the rectangle is : " + area );	
	}
}
class Rectangle extends Shape
{
	private double height;
	private double volume;
	
public void setRectangle(double height)
	{
		this.height=height;
	}
		
public void getVolume()
	{
		volume=length*width*height;
		System.out.print("The volume of the rectangle is :" + volume );
	}	

public static void main(String args [])
	{
		double length=19.7, width=7.0, height=16.0;
		Rectangle obj = new Rectangle();
		obj.setShape(length, width);
		obj.getArea();
		System.out.println();
		obj.setRectangle(height);
		obj.getVolume();
	}		
}

 	
NURIZLIN NATASHA
NURIZLIN NATASHA
class Shape {
    protected double length;
	protected double width;
	private double area;
	
	public void setShape (double length, double width ) {
	    this.length = length;
		this.width = width;
		
		}
		
		public void getArea (double length, double width) {
		
		area= length * width;
		
		System.out.println ( "the Area of Rectangle is :" + area );
		
		}
		}
	
public class Rectangle extends Shape {
  
	private double height;
	private double volume;
	
	public void setRectangle (double height ) {
	    this.height = height;
		
		}
		
	public void getVolume () {

	volume= (length * width) * height;
		
	System.out.println ( "the volume of Rectangle is :" + volume );
	
	
		
		}
		public static void main(String args[]){
        double a = 10; 
        double b = 5;
		double c = 8;
        Rectangle obj = new Rectangle();
        obj.setShape(a, b);
        obj.getArea(a, b);
        obj.setRectangle(c);
		obj.getVolume();
		}
}
farisyah munawwarah moh d samudin
farisyah munawwarah moh d samudin
public class Shape
{
protected double length;
protected double width;
private double area;

public void setShape (double length,double width){
this.length = length;
this.width = width;
}

public void getArea(double length,double width){
 area = length*width;
 System.out.println("The area is:"+area);
 
 }
}
RECTANGLE
public class Rectangle extends Shape
{
private double height;
private double volume;

public void setRectangle (double height){
this.height = height;
}
public void getVolume(double length,double width,double height){
	volume = length*width*height;
	System.out.println("The volume is:"+volume);
	
	}
	public static void main(String[] args)
	{
		double x=24.0,y=9.0,z=30.0;
		Rectangle a = new Rectangle();
		a.getArea(x,y);
		a.getVolume(x,y,z);
	}
}

Muhd Ikmal
Muhd Ikmal
Shape.java

public class Shape
{
	protected double length;
	protected double width;
	private double area;
	public void setShape(double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length*width;
		
		System.out.println("Area is : " + area);
	}
}

Rectangle.java

class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;
	}
	
	public void getVolume(double height, double width, double length)
	{
		volume = length*width*height;
		
		System.out.println("volume is : " + volume);
	}
	
	public static void main (String[]args)
	{
		double length = 5.00;
		double width = 5.00;
		double height = 5.00;
		
		Rectangle total = new Rectangle();
		
		total.getArea(length,width);
		total.getVolume(length,width,height);
		
	}
}
Hanis Hafiz
Hanis Hafiz

public class Bentuk
{
	private double area;
	protected double length;
	protected double width;
		public void setShape(double length, double width)
		{
			this.length=length;
			this.width=width;
		}

		public void getArea()
		{
			area=length*width;
			System.out.println("\nArea : "+area);
		}
}

public class Petak extends Bentuk
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
	this.height=height;
	}

	public void getVolume(double width,double length)
	{
		volume=length*width*height;
		System.out.println("Volume is: "+volume);
	}

	public static void main(String[]args)
	{
		Bentuk bersegi=new Bentuk();
		bersegi.setShape(12,8);
		bersegi.getArea();
		Petak berpetak=new Petak();
		berpetak.setRectangle(9);
		berpetak.getVolume(12,8);
		
		
	}
}





khaliq
khaliq
public class Shape1
{

		protected double length,width;
		private double area;
		
		public void setShape(double length,double width)
		{
			this.length=length;
			this.width=width;
		}
		
		public void getArea()
		{
			area=length*width;
			System.out.println ("the area is:"+area);
		}
		public static void main (String[]args)
		{
		
		}
}
public class Rectangle extends Shape1 
{
	private double height,volume;
	
	public void setRectangle(double height)
	{
		this.height=height;
	}
	public void getVolume(double length,double width,double height)
	{
		volume=length*width*height;
		System.out.println ("the volume is:"+volume);
	}
	public static void main (String[]args)
	{
		Rectangle a =new Rectangle();
		a.height=(2);
		Rectangle b=new Rectangle();
		b.getVolume(3,4,5);	
		Shape1 c=new Shape1();
		c.setShape(6,7);
		c.getArea();
	}
}
NURFATIN AFIQAH BINTI MUSTAFAR
NURFATIN AFIQAH BINTI MUSTAFAR
public class Shape
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length, double width)
	{
		this.length=length;
		this.width=width;
		
	}

	public void getArea(double length,double width)
	{
		area=length*width;
		System.out.println("The area is: " + area);
		
	}
}
public class Rectangle extends Shape
{
	private double height;
	private double volume;
	
	public void setRectangle (double height)
	{
		this.height=height;
	}
	
	public void getVolume(double length,double width,double height)
	{
		volume=length*width*height;
		System.out.println("The volume is: " + volume);
	}
	
	public static void main(String [] args)
	{
		double c=12.2,d=5.5,e=7.8;
		Rectangle a = new Rectangle();
		a.getArea(c,d);
		a.getVolume(c,d,e);
		
	}
}	
Fahmi
Fahmi
Shape1.java
public class Shape1  
{ 
   
   protected double length; 
   protected double width; 
   private double area;
  
    
   public void setShape (double length, double width)   
   {
    this.length=length; 
	this.width=width;
 
   } 
    
	public void getArea(double length, double width) 
	{ 
	   area=length*width; 
	   System.out.println("Area is" +area);
	} 
	
}	

Rectangle.java 
public class Rectangle extends Shape1 
  { 
    private double height; 
	private double volume; 
	
	
	  public void setRectangle (double hieght)
    { 
	   this.height=height; 
    } 

      public void getVolume(double length,double width,double height)
	  
    { 
      volume=length*height*width; 
      System.out.println("voulume is" +volume);	  
    } 


	public static void main(String[] args)  
	{
	double 
	a=10.0,b=20.0,c=30.0; 
	Rectangle demo= new Rectangle(); 
	demo.getVolume(a,b,c); 
	demo.getArea(a,b); 
  	}
  }	  
Halim bin Sayadi
Halim bin Sayadi 
Shape1.java 

public class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void getShape (double length, double width)
	{
		this.length = length;
		this.width = width;
	}
	
	public void getArea(double length, double width)
	{
		area = length * width;
		System.out.println ("The Area is " + area);
	}

}

Rectangle.java
class Rectangle extends Shape1 
{
	private double height;
	private double volume;
	
	public void setRectangle(double height)
	{
		this.height = height;

	}
	
	public void getVolume(double length, double width, double height)
	{
		volume =length * width * height;
		System.out.println ("The Volume is " + volume);
	}
	
	public static void main (String [] args)
	{
		double p = 10.2, q = 11.5, r = 5.1;
		Rectangle x = new Rectangle();
		x.getVolume(p,q,r);
		x.getArea(p,q);
	}
}



coding(ameer)
coding(ameer)
Shape1.java

class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width){
		
		this.length=length;
		this.width=width;
	}
	
	public void getArea(double length,double width){
	
	area=length*width;
	System.out.println("Area is "+area);
	}
	
}

Rectangle.java

class Rectangle extends Shape1{

	private double height;
	private double volume;
	
	public void setRectangle(double height){
	
	this.height=height;
	}
	public void getVolume(double length,double width,double height){
	
	volume=length*width*height;
	System.out.println("volume is "+volume);
	
	}
	
	public static void main(String[]args){
		
		double a=10.1,b=22.0,c=2.0;
		Rectangle demo = new Rectangle();
		demo.getVolume(a,b,c);
		demo.getArea(a,b);
		

	}
}
Exercise
Exercise
coding(ameer)
coding(ameer)
Shape1.java

class Shape1
{
	protected double length;
	protected double width;
	private double area;
	
	public void setShape(double length,double width){
		
		this.length=length;
		this.width=width;
	}
	
	public void getArea(double length,double width){
	
	area=length*width;
	System.out.println("Area is "+area);
	}
	
}

Rectangle.java

class Rectangle extends Shape1{

	private double height;
	private double volume;
	
	public void setRectangle(double height){
	
	this.height=height;
	}
	public void getVolume(double length,double width,double height){
	
	volume=length*width*height;
	System.out.println("volume is "+volume);
	
	}
	
	public static void main(String[]args){
		
		double a=10.1,b=22.0,c=2.0;
		Rectangle demo = new Rectangle();
		demo.getVolume(a,b,c);
		demo.getArea(a,b);
		

	}
}
Exercise
Exercise
]]></description>
         <enclosure url="" />
         <pubDate>2018-09-06 07:59:56 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/rsaz3v2dnvdb/wish/278307545</guid>
      </item>
   </channel>
</rss>
