<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Method exercise by Zuraihah Ngadengon</title>
      <link>https://padlet.com/zu_ngadungon/nzrhamcim9po</link>
      <description>Made with the best of intentions</description>
      <language>en-us</language>
      <pubDate>2018-08-13 02:58:22 UTC</pubDate>
      <lastBuildDate>2025-11-14 22:55:23 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Selesaikan method</title>
         <author>zu_ngadungon</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/272800814</link>
         <description><![CDATA[<div>Write a complete Java application to prompt the user for the <strong>double radius of a sphere</strong>, and call method <strong>sphereVolume</strong> to calculate and display the volume of the sphere. <br>1.Definition of method:<br><strong>public static double sphereVolume( double radius )</strong><br><br>2.Use the following statement to calculate the volume:<br><strong>double volume = ( 4.0 / 3.0 ) * Math.PI * Math.pow( radius, 3 )</strong><br><br>- Each student need to solve the problem individually. Then copy &amp; paste the code and output here.<br>- Need to <strong>understand</strong> and <strong>explain the result</strong> in the class</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-08-13 02:59:14 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/272800814</guid>
      </item>
      <item>
         <title>Pathmahn</title>
         <author>pathmahn99</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273840234</link>
         <description><![CDATA[<pre>import java.util.*;
import java.lang.*;


public class VolumeCalculator2{


  public static void main(String[] args){

    Scanner scan = new Scanner(System.in);

    System.out.println("Welcome Sphere Volume Calculator");

    System.out.print("Enter the radius : ");
    double q = scan.nextDouble();

    double vol;

    vol = SphereVolume(q);

    System.out.println("Volume of Sphere : " + vol);

  }

  public static double SphereVolume(double radius){

    double volume;

    return (4.0/3.0)*Math.PI*Math.pow(radius,3);

  }
}
<br></pre><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304299664/a790a4f3b4e442ede09555906eaf0211/Screenshot__31_.png" />
         <pubDate>2018-08-18 03:53:56 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273840234</guid>
      </item>
      <item>
         <title>Naveen</title>
         <author>naveen05299</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273840926</link>
         <description><![CDATA[<pre>import java.util.Scanner;<br>public class Volume<br>{<br>&nbsp; public static double sphereVolume(double radius)<br>&nbsp; {<br>&nbsp; &nbsp; &nbsp;double volume;<br>&nbsp; &nbsp; &nbsp;volume = (4.0/3.0) * Math.PI * Math.pow(radius, 3.0);<br>&nbsp; &nbsp; &nbsp;System.out.print("Volume of the circle:"+volume);<br>&nbsp; &nbsp; &nbsp;return volume;<br>&nbsp; }<br>&nbsp; public static void main(String[] args)<br>&nbsp; {<br>&nbsp; &nbsp; double radius;<br>&nbsp; &nbsp; double vol;<br>&nbsp; &nbsp; Scanner scan=new Scanner(System.in);<br>&nbsp; &nbsp; System.out.print("Enter the radius of the circle:");<br>&nbsp; &nbsp; radius=scan.nextDouble();<br>&nbsp; &nbsp; vol=sphereVolume(radius); //this is how u call method<br><br>&nbsp; }<br><br>}</pre>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305085948/e0f90845259aeb2fdefca444d62b2069/Capture.png" />
         <pubDate>2018-08-18 04:17:42 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273840926</guid>
      </item>
      <item>
         <title>RAJA AIMAN</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273846907</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>import java.lang.Math;<br>public class Sphere<br>{<br>	public static void main (String args[])<br>	{<br>		double radius,volume;<br>		Scanner num = new Scanner(System.in);<br>		<br>		System.out.println("\ncalculate the Volume of Sphere");<br>		System.out.print("insert radius = ");<br>		radius = num.nextDouble();<br>		<br>		volume = SphereVolume(radius);<br>		<br>		System.out.println("Volume of Sphere is = "+volume);<br>		<br>	}<br>	public static double SphereVolume(double radius)<br>	{<br>		double volume;<br>	<br>		volume = (4.0/3.0) * Math.PI * Math.pow(radius,3);<br>	<br>		return(volume);<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305383986/0a4763023ad0993d31484bb2dc82d88e/Capture.png" />
         <pubDate>2018-08-18 08:26:52 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273846907</guid>
      </item>
      <item>
         <title></title>
         <author>azlanjasmani</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273849783</link>
         <description><![CDATA[import java.util.Scanner;
public class Volume
{
  public static double sphereVolume(double radius)
  {
     double volume;
     volume = (4.0/3.0) * Math.PI * Math.pow(radius, 3.0);
     System.out.print("Volume of the circle:"+volume);
     return volume;
  }
  public static void main(String[] args)
  {
    double radius;
    double vol;
    Scanner scan=new Scanner(System.in);
    System.out.print("Enter the radius of the circle:");
    radius=scan.nextDouble();
    vol=sphereVolume(radius); //this is how u call method

  }

}
 
more_vert
Pathmahn
Pathmahn
import java.util.*;
import java.lang.*;


public class VolumeCalculator2{


  public static void main(String[] args){

    Scanner scan = new Scanner(System.in);

    System.out.println("Welcome Sphere Volume Calculator");

    System.out.print("Enter the radius : ");
    double q = scan.nextDouble();

    double vol;

    vol = SphereVolume(q);

    System.out.println("Volume of Sphere : " + vol);

  }

  public static double SphereVolume(double radius){

    double volume;

    return (4.0/3.0)*Math.PI*Math.pow(radius,3);

  }
}


Selesaikan method
Selesaikan method
Write a complete Java application to prompt the user for the double radius of a sphere, and call method sphereVolume to calculate and display the volume of the sphere. 
1.Definition of method:
public static double sphereVolume( double radius )

2.Use the following statement to calculate the volume:
double volume = ( 4.0 / 3.0 ) * Math.PI * Math.pow( radius, 3 )

- Each student need to solve the problem individually. Then copy & paste the code and output here.
- Need to understand and ]]></description>
         <enclosure url="" />
         <pubDate>2018-08-18 10:06:04 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273849783</guid>
      </item>
      <item>
         <title>Muhammad Azlan</title>
         <author>azlanjasmani</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273850045</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class volume<br>{<br>	public static double sphereVolume(double radius)<br>	{<br>		double volume=(4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		return volume;<br>	}<br>	public static void main(String[] args)<br>	{<br>		Scanner scan=new Scanner(System.in);<br>		double radius,vol;<br>		System.out.print("Enter the radius of the sphere : ");<br>		radius=scan.nextDouble();<br>		volume a=new volume();<br>		vol=a.sphereVolume(radius);<br>		System.out.print("Volume of a sphere is = "+vol);<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/285346888/900d784ae1b2f0e358d1a7f0913bd224/java.png" />
         <pubDate>2018-08-18 10:13:06 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273850045</guid>
      </item>
      <item>
         <title>Muhammad Fadzlullah Bin Mohamad Sukri</title>
         <author>muhdfadzlullah19</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273850096</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Shape&nbsp;<br>{<br>	public static double sphereVolume(double radius)<br>	{<br>		double volume;<br>		<br>		volume = (4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		<br>		return volume ;<br>	}<br>	<br>	public static void main(String[] args)<br>	{<br>		<br>		double rad;<br>		<br>		Scanner scan = new Scanner (System.in);<br>		<br>		System.out.println("Please Insert Your Radius: ");<br>		rad = scan.nextDouble();<br>		<br>		double sphereVolume;<br>		sphereVolume = sphereVolume(rad);<br>		System.out.println("Volume = " + sphereVolume);<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/215892407/35a9e8f729798cc888c234a6c0514642/Capture.png" />
         <pubDate>2018-08-18 10:15:33 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273850096</guid>
      </item>
      <item>
         <title>NURNABILAH BINTI MOHD ZUBIR</title>
         <author>athirahsyafiqah_rahmad</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273850857</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Sphere{<br>&nbsp; &nbsp;public static double spherevolume(double radius)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp;return(4.0/3.0)*Math.PI*Math.pow(radius,3);<br>&nbsp; &nbsp;}<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;public static void main(String[] args)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp;System.out.println("Formula for Sphere");<br>&nbsp; &nbsp;Scanner input = new Scanner (System.in);<br>&nbsp; &nbsp;double radius = 0.0, volume = 0.0;<br>&nbsp; &nbsp;System.out.println("Enter Radius :");<br>&nbsp; &nbsp;radius = input.nextdouble();<br>&nbsp; &nbsp;<br>&nbsp; &nbsp;System.out.printf("Volume = %.3f", spherevolume(radius));<br>&nbsp; &nbsp;}<br>&nbsp;}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/274876218/dabccf8cdcd9d2002d588e904dd41391/Sphere.png" />
         <pubDate>2018-08-18 10:46:20 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273850857</guid>
      </item>
      <item>
         <title>coding(Ameer)</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273854180</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>import java.lang.Math;<br><br>public class sphereVolume<br><br>{<br>	public static void main (String[]args)<br>	{<br>		Scanner scan= new Scanner(System.in);<br>		double radius;<br>		double volume;<br>		<br>		<br>		System.out.print("Enter radius : ");<br>		radius = scan.nextDouble();<br>		<br>		volume = sphereVolume(radius);<br>		<br>		System.out.print("volume is : "+volume);<br>		<br>	}<br><br><br><br>	public static double sphereVolume(double radius)<br>	{<br>		double volume;<br>		volume = (4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		<br>		return volume;<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304197328/aed65cdbfdc918d3a3ce2a2f5ce91b7e/output.jpg" />
         <pubDate>2018-08-18 12:45:37 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273854180</guid>
      </item>
      <item>
         <title>NURUL AMIZA MOHD RIZAL</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273856880</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>import java.text.DecimalFormat;<br><br>public class Sphere<br>{<br>	public static void main (String[]args)<br>	{<br>		Scanner scan = new Scanner(System.in);<br>		double radius, volume;<br>		<br>		System.out.print("Enter the number of radius : ");<br>		radius = scan.nextDouble();<br>		<br>		volume = sphereVolume(radius);<br>		System.out.print("The volume is : "+ String.format("%.2f", volume));<br>		<br>	}<br><br>	public static double sphereVolume(double radius)<br>	{<br>		double sphereVolume = (4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		return sphereVolume;<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305391735/a7256d39cf18bb158e959f5b19e58fb7/Capture.png" />
         <pubDate>2018-08-18 13:30:16 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273856880</guid>
      </item>
      <item>
         <title>Muhammad Fahmi </title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273856979</link>
         <description><![CDATA[<div> import java.util.Scanner;<br> public class Shape <br> { <br>    public static double sphereVolume(double radius) <br>	{ <br>       double volume; <br>       volume = (4.0/3.0)*Math.PI*Math.pow(radius,3); <br>       return volume; <br>    } <br> <br>    public static void main(String[] args) <br>    { <br>       double radius; <br>       Scanner scan = new Scanner (System.in); <br>       <br>       System.out.println("Please enter your radius:"); <br>       radius = scan.nextDouble(); <br>       <br>       double sphereVolume; <br>       sphereVolume = sphereVolume(radius); <br>       System.out.println("Volume =" + sphereVolume); <br>    } <br>}	<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304737511/f08ddc4a593c054ee64ce6e4dbd95ec1/Shape.png" />
         <pubDate>2018-08-18 13:32:34 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273856979</guid>
      </item>
      <item>
         <title>MUHAMMAD HANIS HAFIZ BIN KADIRIN</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273857808</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Padletketipkukukakiku<br>{<br>	public static double sphereVolume(double radius)<br>	{<br>		double volume = ( 4.0 / 3.0 ) * Math.PI * Math.pow( radius, 3 );<br>		System.out.println("\n\nThe Sphere Volume is: "+String.format("%.2f",volume)); <br>		return volume;<br>	}<br>	public static void main(String[]args)<br>	{<br>		double radius;<br>		Scanner ReadMemory=new Scanner(System.in);<br>		System.out.print("Enter the Radius of the Sphere: ");<br>		radius=ReadMemory.nextDouble();<br>		sphereVolume(radius);<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305038721/3067b12bf169b0b353d4b68f20499ffd/this.png" />
         <pubDate>2018-08-18 13:52:24 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273857808</guid>
      </item>
      <item>
         <title>NUR ADHWA&#39; NABILA BINTI SHAMSULKAMA</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273858503</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>import java.text.DecimalFormat;<br>public class Sphere<br>{<br>	public static void main(String[]args)<br>	{<br>		System.out.println("Total Volume of Sphere");<br>		System.out.println("**********************");<br>		<br>		Scanner value = new Scanner(System.in);<br>		double radius,volume;<br>	<br>		System.out.print("Enter radius :");<br>		radius = value.nextDouble();<br>				<br>		volume = sphereVolume(radius);<br>		System.out.println("Volume of sphere :" + String.format("%f",volume));<br>	}<br>	<br>	public static double sphereVolume(double radius)<br>	{<br>	<br>		double sphereVolume = (4.0/3.0) * Math.PI * Math.pow(radius,3);<br>		<br>		<br>		return sphereVolume;<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304737019/706cb0851329991266c4dfd3f2fe6927/SD.png" />
         <pubDate>2018-08-18 14:10:02 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273858503</guid>
      </item>
      <item>
         <title>TENGKU ANIS ROSEDIANA BINTI TENGKU HASDI</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273859294</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>import java.text.DecimalFormat;<br><br>public class sphereVolume<br>{<br>	 public static double sphereVolume(double radius)<br> 	{<br>			 <br>			 double sphereVolume = (4.0/3.0)*Math.PI*Math.pow(radius,3);<br>			 return sphereVolume;<br>			 <br>	}<br>	<br>    public static void main(String[]args)<br>	{	<br>		double radius,volume;<br>		Scanner scan = new Scanner(System.in);<br>		System.out.println("Please Enter Radius :");<br>		radius = scan.nextDouble();<br>		<br>		volume= sphereVolume(radius); <br>		System.out.println("Volume of Sphere :" + String.format("%.2f" ,volume ));<br>			 <br>	}<br><br>   <br>	}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304736955/8dec23dc5fd7655a9e62d9549270a999/oop.png" />
         <pubDate>2018-08-18 14:26:54 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273859294</guid>
      </item>
      <item>
         <title>MUHAMMAD HILMI ADLI BIN AMIRUDIN</title>
         <author>hilmi_taro33</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273859509</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>class PadletExercise<br>{<br>	public static void main(String args[])<br>	{<br>		Scanner value = new Scanner(System.in);<br>		System.out.println("Please the radius of sphere : ");<br>		double radius = value.nextDouble();<br>		<br>		double volume = (4*22*radius*radius*radius)/(3*7);<br>		System.out.println("Volume is :" +volume);<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304199450/4c92f6dcec583c2c0efd0b89ccbb2f58/Capture.jpg" />
         <pubDate>2018-08-18 14:30:36 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273859509</guid>
      </item>
      <item>
         <title>NUR SYAQIRAH NAIMAH BINTI JAMIL</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273859633</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>import java.text.DecimalFormat;<br><br>public class Sphere<br>{<br>	public static void main(String[] args)<br>	{<br>		System.out.println(" Calculate the Volume of Sphere ");<br>		<br>		Scanner naimah= new Scanner(System.in);<br>		<br>		System.out.print(" Enter the radius : " );<br>		double radius=naimah.nextDouble();<br>		<br>		double volume=sphereVolume(radius);<br>		System.out.println( " The the Volume is : " + String.format("%.3f",volume));<br>		<br>	}<br>	public static double sphereVolume(double radius)<br>	{<br>		double volume = ( 4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		<br>		return volume;<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305406607/2e5236c8ede71327f333251a3aa40397/Capture.png" />
         <pubDate>2018-08-18 14:33:21 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273859633</guid>
      </item>
      <item>
         <title>NURFATIN AFIQAH BINTI MUSTAFAR</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273860554</link>
         <description><![CDATA[<div>import java.util.Scanner ;<br>public class Sphere<br>{<br>	public static double sphereVolume(double radius)<br>	{<br>		double volume = (4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		<br>		System.out.println("Volume is : " +String.format("%.2f",volume));<br><br>		return 0;<br>	}<br>	<br>	public static void main(String []args)<br>	{<br>		Scanner s = new Scanner(System.in);<br>		System.out.println("Enter the radius of sphere: ");<br>		double radius=s.nextDouble();<br>		radius=sphereVolume(radius);<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304727746/cb1169732ded114ab23ec7a154d982dd/Screenshot__6_.png" />
         <pubDate>2018-08-18 14:55:46 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273860554</guid>
      </item>
      <item>
         <title>MOHAMAD AIMAN BIN MOHD SHAH</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273861693</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2018-08-18 15:22:52 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273861693</guid>
      </item>
      <item>
         <title>Muhammad Faris Bin Mihat</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862128</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>import java.lang.Math;<br>public class Vol<br>{<br>	public static double sphereVolume(double radius)<br>	{<br>		double volume;<br>		volume = (4.0/3.0) * Math.PI * Math.pow(radius,3);<br>		return(volume);<br>	}<br>	public static void main(String [] args)<br>	{<br>		double radius,volume;<br>		Scanner no = new Scanner(System.in);<br>		<br>		System.out.println("Sphere volume is calculated");<br>		<br>		System.out.print("insert radius = ");<br>		radius = no.nextDouble();<br>		volume = sphereVolume(radius);<br>		<br>		System.out.println("Volume of sphere is = " + volume);<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305410445/933d593cb1f52d7a7d40e89dbb8827d6/java.png" />
         <pubDate>2018-08-18 15:34:26 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862128</guid>
      </item>
      <item>
         <title>NURIZLIN NATASHA BINTI MOHD LATIFF</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862224</link>
         <description><![CDATA[<div><br>import java.text.DecimalFormat;<br>import java.util.Scanner;<br>public class Sphere<br>{<br>  public static double sphereVolume(double radius)<br>  {<br>     double vol;<br>	 <br>     vol = (4.0/3.0) * Math.PI * Math.pow(radius,3);<br>	 DecimalFormat df = new DecimalFormat("#.000");<br>      <br>	 System.out.println("Volume       : " + df.format(vol));<br>	 <br>	return vol; <br>	 <br> }<br> <br> public static double sphereArea(double radius)<br>  {<br>     double area;<br>	 <br>     area = 4 * Math.PI * Math.pow(radius, 2);<br>	 DecimalFormat df = new DecimalFormat("#.000");<br>	 <br>	 System.out.println("Surface Area : " + df.format(area));<br>	 <br>	return area; <br>	 <br> }<br> <br>  public static void main(String[] args)<br>  {<br>    double radius;<br>    double vol;<br>    double area;<br>	<br>	Scanner scan=new Scanner(System.in);<br>    System.out.print("Please insert the radius of the sphere volume: ");<br>    radius=scan.nextDouble();<br>    vol=sphereVolume(radius); <br>	<br>	System.out.print("Please insert the radius of the sphere surface area: ");<br>	area=scan.nextDouble();<br>    area=sphereArea(radius);<br>  }<br><br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/303328062/8d225c21ac2ed2be6dd65d5fdd4585c0/java__sphere_.png" />
         <pubDate>2018-08-18 15:37:28 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862224</guid>
      </item>
      <item>
         <title>Halim bin Sayadi Hodam</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862509</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Sphere<br>{<br>	public static void main (String[]args)<br>	{<br>		Scanner scan = new Scanner(System.in);<br>		double radius,volume;<br>		<br>		System.out.println ("Please insert radius value : ");<br>		radius = scan.nextDouble();<br>		<br>		volume = Sphere(radius);<br>		<br>		System.out.println ("The Volume of the Sphere is : " + volume);<br>	<br>	}<br>	<br>	public static double Sphere (double radius)<br>	{<br>		double volume;<br>		volume = ( 4.0 / 3.0 ) * Math.PI * Math.pow(radius,3);	<br>		<br>		return (volume);<br>	}	<br>}<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304998509/0e8996657551b2492245d0e74a6c04b1/coding_padlet.png" />
         <pubDate>2018-08-18 15:44:16 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862509</guid>
      </item>
      <item>
         <title>Farisyah Munawwarah Mohamad Samudin</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862687</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>&nbsp;public class SphereVolume<br>&nbsp;{&nbsp;<br>&nbsp; &nbsp; public static double sphereVolume(double radius)&nbsp;<br>	{&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;double volume;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;volume = (4.0/3.0)*Math.PI*Math.pow(radius,3);&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;return volume;&nbsp;<br>&nbsp; &nbsp; }&nbsp;<br>&nbsp;<br>&nbsp; &nbsp; public static void main(String[] args)&nbsp;<br>&nbsp; &nbsp; {&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;double radius;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;Scanner scan = new Scanner (System.in);&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;System.out.println("Insert your radius:");&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;radius = scan.nextDouble();&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;double sphereVolume;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;sphereVolume = sphereVolume(radius);&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;System.out.println("Volume of The Sphere = " + sphereVolume);&nbsp;<br>&nbsp; &nbsp; }&nbsp;<br>}	<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304300096/42c7e826c89e9ac982aa67371f004232/ss2.png" />
         <pubDate>2018-08-18 15:49:15 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273862687</guid>
      </item>
      <item>
         <title>Wan Ahmad Khaliq Zhafir Zulkiflee</title>
         <author>iammrpotato28</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273863313</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Geometry <br>{<br>	public static double spherevolume(double radius)<br>	{<br>		double volume = ( 4.0 / 3.0 ) * Math.PI * Math.pow(radius, 3);<br>		System.out.println("The Volume of the Sphere is " +String.format("%.2f", volume));<br>		return volume;<br>	}<br>	public static void main(String[] args) <br>	{<br>		double radius;<br>		Scanner in = new Scanner(System.in);<br>		System.out.print("Please enter a radius: ");<br>		radius = in.nextDouble();<br>		spherevolume(radius);<br>		<br>	}<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/301993505/650204f7992303df7fd7cf30271cd3a0/Capture.jpg" />
         <pubDate>2018-08-18 16:05:56 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273863313</guid>
      </item>
      <item>
         <title>Mohamad Aiman bin mohd shah</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273864330</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Sphere<br>{<br>	public static double sphereVolume(double radius)<br>	{<br>		double volume=(4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		return volume;<br>	}<br>	<br>	public static void main(String[]args)<br>	{<br>		double radius, volu;<br>		Scanner scan=new Scanner(System.in);<br>	<br>		System.out.println("Enter the volume of sphere");<br>	<br>		radius=scan.nextDouble();<br>	<br>		volu=sphereVolume(radius);<br>	<br>		System.out.println("Volume of the sphere is = " + volu);<br><br>	}	<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304737009/1a572109badeb870476b689031481962/exercise.png" />
         <pubDate>2018-08-18 16:32:12 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273864330</guid>
      </item>
      <item>
         <title>MUHAMMAD IKMAL BIN MOHD</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273864399</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Bentuk<br>{<br>	public static double sphereVolume(double pai)<br>	{<br>		double volume=(4.0/3.0)*Math.PI*Math.pow(pai,3);<br>		return volume;<br>	}<br>	<br>	public static void main(String[]args)<br>	{<br>		double pai, volu;<br>		Scanner scan=new Scanner(System.in);<br>	<br>		System.out.println("Enter the volume of sphere");<br>	<br>		pai=scan.nextDouble();<br>	<br>		volu=sphereVolume(pai);<br>	<br>		System.out.println("Volume of the sphere is = " + volu);<br><br>	}	<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/304737009/1a572109badeb870476b689031481962/exercise.png" />
         <pubDate>2018-08-18 16:34:30 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273864399</guid>
      </item>
      <item>
         <title>Sumithrra</title>
         <author>rsumithrra</author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273866755</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>class VolumeofSphere<br>{<br>    public static double sphereVolume(double radius)<br>	{<br>	    double volume=(4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		return volume;<br>    }<br>   <br>    public static void main(String[] args)<br>	{<br>            Scanner scan=new Scanner(System.in);<br>            double radius;<br>            double volume;<br>    System.out.println("Enter the radius of sphere:");<br>        radius=scan.nextDouble();<br>    <br>    volume=sphereVolume(radius);<br><br>    System.out.println("Volume of a sphere is="+volume);<br>   }	<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/215892398/82e35ace63a73b8b629d5682bd214e62/oop_padlet.png" />
         <pubDate>2018-08-18 17:30:09 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273866755</guid>
      </item>
      <item>
         <title>Elaveyni</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273868760</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>class SphereVolume<br>{<br><br>    public static void main(String args[])<br>	{<br>	<br>	    <br>	     Scanner scan= new Scanner(System.in);<br>		double radius,Volume;<br>		System.out.println("Enter the radius of sphere:");<br>		radius =scan.nextDouble();<br>		<br>		<br>		   double volume= (4.0/3.0)*Math.PI*Math.pow(radius,3);<br>		   <br>		 System.out.println("Volume is:" +volume);<br>		 }<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/305419908/9b0f26f3d81a92f78fad68bc32779a51/Capture_oop.png" />
         <pubDate>2018-08-18 18:27:14 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/273868760</guid>
      </item>
      <item>
         <title>GO AIMANN</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/277825745</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2018-09-05 03:33:54 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/277825745</guid>
      </item>
      <item>
         <title>GO AIMANN!!!!!!!!!</title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/277825746</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2018-09-05 03:33:54 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/277825746</guid>
      </item>
      <item>
         <title>AIMAN TAK KISAHH </title>
         <author></author>
         <link>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/277825989</link>
         <description><![CDATA[<div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2018-09-05 03:35:05 UTC</pubDate>
         <guid>https://padlet.com/zu_ngadungon/nzrhamcim9po/wish/277825989</guid>
      </item>
   </channel>
</rss>
