<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Group B- Soalan(b) by Ramlah Mailok</title>
      <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2015-09-21 04:59:13 UTC</pubDate>
      <lastBuildDate>2026-01-16 23:25:52 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Muhammad Firdaus Bin Zlkapli</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/71624363</link>
         <description><![CDATA[<p>#include&lt;iostream&gt;
 using namespace std;
 float kiraIsipadu2(); 
 int r,h; 
 float sphere,cone,totalIsipadu,hemisphere; 
 const int Pi=3.147;&nbsp;</p><p>
 int main() 
 { 
 cout&lt;&lt;"Please Enter The Radius"&lt;&lt;endl;
 cin&gt;&gt;r;
 cout&lt;&lt;"Please Enter The Height"&lt;&lt;endl;
 cin&gt;&gt;h;
 
 totalIsipadu=kiraIsipadu2(); 
 cout&lt;&lt;"The Total Volume Of The Solid Is "&lt;&lt;totalIsipadu;
 return 0;
 } 
 float kiraIsipadu2()
 {  
 sphere=(4/3)*Pi*(r*r*r);
 hemisphere=sphere/2; 
 cone=Pi*(r*r)*(h/3);&nbsp;</p><p>
 totalIsipadu=hemisphere+cone; 
 
return hemisphere+cone;

}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-23 00:28:06 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/71624363</guid>
      </item>
      <item>
         <title>Nurul Fatin</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72085418</link>
         <description><![CDATA[<p>#include &lt;iostream.h&gt; 
using namespace std; 

float volume2 (float, float); 
int PI = 22/7; 
int main(){

float radius, height;
 
cout&gt;&gt; "Please enter the radius :" ;
cin &lt;&lt; radius;
 
cout&gt;&gt; "Please enter the height :" ;
cin&gt;&gt; height;
 
float totalvolume = volume2 ; 
cout&gt;&gt; "The total volume is " &lt;&lt; fixed &lt;&lt; set presicion(2) &lt;&lt; volume2; 

return 0; 
}

float volume2 (float r, float h){

VHemisphere = VSphere/2;
VSphere = 4/3 * PI * r * r * r;
VCone = PI * r * r * h/3;

return VHemisphere+VCone ; 
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-25 02:43:35 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72085418</guid>
      </item>
      <item>
         <title>ASMAFITRI BT ZANILABDIN</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72323233</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;
using namespace std;

float kiraIsipadu2(float, float);

   int r;
   int h;
   float vSphere, vCone, totalVolume;
   const PI = 3.142;

int main()
{
   cout&lt;&lt;"Enter the value of radius : "&lt;&lt;endl;
   cin&gt;&gt;r;
   
   cout&lt;&lt;"Enter the value of height : "&lt;&lt;endl;
   cin&gt;&gt;h;
   
   totalVolume = kiraIsipadu2;
   cout&lt;&lt;totalVolume;
   
   return 0;
}

float kiraIsipadu2(int radius, int height );
{
  float vSphere, vCone, totalVolume;
  
   vSphere = ((4/3)*PI*r*r*r)2;
   vCone = (PI*r*r*h)/3;
   
   totalVolume = vSphere + vCone;
   
   return vSphere + vCone;
}
   </p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-27 13:37:34 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72323233</guid>
      </item>
      <item>
         <title>Mohamad Nazmi</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72326192</link>
         <description><![CDATA[<p># include &lt;iostream&gt;<br># include &lt;cmath&gt;<br><br>using namespace std;<br><br>void kiraIsipadu(double);<br>void kiraIsipadu2(double);<br>int r,h;<br>int main ()<br><br>{<br><br>cout&lt;&lt;"Volume of Sphere and sphere :"&lt;&lt;kiraisipadu(22/7, 8, 15);<br><br>}<br><br>float kiraIsipadu(doublePI, double radius, double height)<br>{<br>vsphere=4/3*PI*radius*radius*radius;<br>vcone=PI*radius*radius*height/3;<br><br>return vsphere + vcone;<br>}<br>float kiraIsipadu2(doublePI, double radius, double height)<br>{<br>cout&lt;&lt;"enter the value of radius: ";<br>cin&gt;&gt;r;<br>cout&lt;&lt;"enter the value of height: ";<br>cin&gt;&gt;h;<br>vsphere=4/3*PI*radius*radius*radius;<br>vcone=PI*radius*radius*height/3;<br><br>return vsphere + vcone;<br>}<br><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-27 15:01:23 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72326192</guid>
      </item>
      <item>
         <title>SUBAIDAH, NURLIYANA NAJWA, NURFAZIRA</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72329365</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;
using namespace std ;

float kiraIsipadu2(float radius, float height);
float PI = 22/7;
float height;
float radius;
float volume;

int main()
{
   cout&lt;&lt; " please enter the radius:"; 
   cin&gt;&gt; radius;
   
   cout&lt;&lt; " please enter the height:"; 
   cin&gt;&gt; height;
   
   cout&lt;&lt; "the volume is :"&lt;&lt;kiraIsipadu2(radius,height);
   
}

float kiraIsipadu2(float radius, float height)
{
   float volume,hemisphere,cone;
   cone = ((PI*(radius*radius)*height);
   hemisphere = ((4/3*PI(radius*radius*radius))/2;
   
   volume= cone+hemisphere;

return volume;
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-27 16:14:39 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72329365</guid>
      </item>
      <item>
         <title>Fatin Ishmah</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72357603</link>
         <description><![CDATA[<p>#include&lt;iostream&gt;
using namespace std;

float VolumeSphere(float,float);
float VolumeCone(float ,float, float);
float kiraIsiPadu(float,float);
    
int main()
{
   float r,h,VolCone,VolSphere,TotalVolume;
   float r1=8;
   float pi=3.14159;
   
   VolSphere=VolumeSphere(pi,r1);
   cout&lt;&lt;"Total volume is: "&lt;&lt;VolSphere&lt;&lt;endl;
   
   
   
    cout&lt;&lt;"Input cone's radius: ";
    cin&gt;&gt;r;
 
    cout&lt;&lt;"Input cone's height: ";
    cin&gt;&gt;h;
    
    VolCone=VolumeCone(pi,r,h);  
    cout&lt;&lt;"The volume of cone is: "&lt;&lt;VolCone&lt;&lt;endl;

    
    TotalVolume=kiraIsiPadu(VolCone,VolSphere);
    cout&lt;&lt;"Total volume of sphere and cone is: "&lt;&lt;TotalVolume&lt;&lt;endl;   
 
   return 0;
}

float VolumeSphere(float pi,float r1)
{
   float VolSphere;
   
   VolSphere=(4.0/3.0)*pi*(r1*r1*r1);
   return VolSphere;
}
float VolumeCone(float pi,float r, float h)
{
   float VolCone;
   
   VolCone=(1.0/3.0)*pi*(r*r)*h;
   return VolCone;
}

float kiraIsiPadu(float VolSphere,float VolCone)
{
   float TotalVolume;
   
   TotalVolume=VolSphere+VolCone;
   return TotalVolume;
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-28 02:00:36 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72357603</guid>
      </item>
      <item>
         <title>alif ghani</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72357840</link>
         <description><![CDATA[<p>#include&lt;iostream.h&gt; float kiraIsipadu2(float p,float q);&nbsp;</p><p>int main()&nbsp;</p><p>{&nbsp;</p><p>float r;</p><p>float h ;</p><p> cout&lt;&lt;"Masukkan nilai jejari:"; cin&gt;&gt;r;</p><p> cout&lt;&lt;"Masukkan nilai tinggi:";</p><p><span style="font-size: 13px;">cin&gt;&gt;h;</span></p><p> cout&lt;&lt;"Isipadu:"&lt;&lt;kiraIsipadu2(r,h)&lt;&lt;endl;</p><p> }&nbsp;</p><p>float kiraIsipadu2(float r,float h)&nbsp;</p><p>{</p><p> float jumlah,hemisphere,cone,PI=22/7;</p><p><span style="font-size: 13px;">hemisphere=((4/3)*PI*r*r*r); cone=(PI*r*r*h)/3;&nbsp;</span></p><p><span style="font-size: 13px;">jumlah=hemisphere+cone;&nbsp;</span></p><p><span style="font-size: 13px;">return jumlah;</span></p><p><span style="font-size: 13px;"> }</span></p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-28 02:05:46 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72357840</guid>
      </item>
      <item>
         <title></title>
         <author>d067263</author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72358957</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;
#include &lt;iomanip&gt;
using namespace std;

float IsipaduKon();

void main()
{
  double isipadukon;
 
 IsipaduKon();   
}
float IsipaduKon(){
   
   int jejari;
   int tinggi;
   float pai =22/7;
   float isipadukon;
      
   cout&lt;&lt;"\tSila masukkan tinggi kon : ";
   cin&gt;&gt;tinggi;
   cout&lt;&lt;"\tSila masukkan jejari kon : ";
   cin&gt;&gt;jejari;
   
   isipadukon = (pai * (jejari*jejari) * ((tinggi)/3));

   cout&lt;&lt; fixed&lt;&lt;setprecision(2)&lt;&lt;endl;
   cout&lt;&lt;"\tTingi :"&lt;&lt;tinggi&lt;&lt;endl;
   cout&lt;&lt;"\tJejari :"&lt;&lt;jejari&lt;&lt;endl;
   cout&lt;&lt;"\tVolume :"&lt;&lt;isipadukon&lt;&lt;endl;

   return isipadukon;
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-28 02:27:31 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72358957</guid>
      </item>
      <item>
         <title>balkis</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72364892</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2015-09-28 04:23:10 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72364892</guid>
      </item>
      <item>
         <title>Yuhanios</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72365219</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;</p><p>using namespace std;</p><p>float kiraIsipadu2 (float height,float radius);</p><p>float PI = 22/7;</p><p>float height;</p><p>float radius;</p><p>int main ()</p><p>{</p><p>cout &lt;&lt; "please enter the height:";</p><p>cin &gt;&gt; height;</p><p>cout &lt;&lt;"please enter the radius:";</p><p>cin &gt;&gt; radius;</p><p>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-28 04:28:37 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72365219</guid>
      </item>
      <item>
         <title>najwa</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72447381</link>
         <description><![CDATA[<p>#include &lt;iostream.h&gt;</p><p>float kiraIsipadu2(float radius, float height); float PI = 22/7;&nbsp;</p><p>float height;</p><p><span style="font-size: 13px;">float radius;&nbsp;</span></p><p>float volume;</p><p><span style="font-size: 13px;">int main()</span></p><p>{</p><p>cout&lt;&lt; " please enter the radius:";&nbsp;</p><p>cin&gt;&gt; radius;&nbsp;</p><p>cout&lt;&lt; " please enter the height:";</p><p> cin&gt;&gt; height;</p><p> cout&lt;&lt; "the volume is :"&lt;&lt;kiraIsipadu2(radius,height);</p><p> }</p><p> float kiraIsipadu2(float radius, float height) {&nbsp;</p><p>float volume,hemisphere,cone;&nbsp;</p><p>cone = ((PI*(radius*radius)*height); hemisphere=((4/3*PI(radius*radius*radius))/2;</p><p> volume= cone+hemisphere;&nbsp;</p><p>return volume;&nbsp;</p><p>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-28 13:56:44 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72447381</guid>
      </item>
      <item>
         <title>nasihah</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72449413</link>
         <description><![CDATA[<p>#include &lt;iostream.h&gt;</p><p>float kiraIsipadu2(float radius, float height);&nbsp;</p><p>float PI = 22/7;&nbsp;</p><p>float height;</p><p>float radius;&nbsp;</p><p>float volume;</p><p>int main()</p><p>{</p><p>cout&lt;&lt; " please enter the radius:";&nbsp;</p><p>cin&gt;&gt; radius;&nbsp;</p><p>cout&lt;&lt; " please enter the height:";</p><p>cin&gt;&gt; height;</p><p>cout&lt;&lt; "the volume is :"&lt;&lt;kiraIsipadu2(radius,height);</p><p>}</p><p>float kiraIsipadu2(float radius, float height)&nbsp;</p><p>{&nbsp;</p><p>float volume,hemisphere,cone;&nbsp;</p><p>cone = ((PI*(radius*radius)*height);</p><p>hemisphere=((4/3*PI(radius*radius*radius))/2;</p><p>volume= cone+hemisphere;&nbsp;</p><p>return volume;</p><p> }</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-28 14:02:30 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72449413</guid>
      </item>
      <item>
         <title></title>
         <author>d067263</author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72616632</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;
#include &lt;iomanip&gt;
using namespace std;

float IsipaduKon();

void main()
{
  double isipadukon;
 
 IsipaduKon();   
}
float IsipaduKon(){
   
   int jejari;
   int tinggi;
   float pai =22/7;
   float isipadukon;
      
   cout&lt;&lt;"\tSila masukkan tinggi kon : ";
   cin&gt;&gt;tinggi;
   cout&lt;&lt;"\tSila masukkan jejari kon : ";
   cin&gt;&gt;jejari;
   
   isipadukon = (pai * (jejari*jejari) * ((tinggi)/3));

   cout&lt;&lt; fixed&lt;&lt;setprecision(2)&lt;&lt;endl;
   cout&lt;&lt;"\tTingi :"&lt;&lt;tinggi&lt;&lt;endl;
   cout&lt;&lt;"\tJejari :"&lt;&lt;jejari&lt;&lt;endl;
   cout&lt;&lt;"\tVolume :"&lt;&lt;isipadukon&lt;&lt;endl;

   return isipadukon;
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-29 07:28:18 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72616632</guid>
      </item>
      <item>
         <title>haida</title>
         <author>d067263</author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72616633</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;
#include &lt;iomanip&gt;
using namespace std;

float IsipaduKon();

void main()
{
  double isipadukon;
 
 IsipaduKon();   
}
float IsipaduKon(){
   
   int jejari;
   int tinggi;
   float pai =22/7;
   float isipadukon;
      
   cout&lt;&lt;"\tSila masukkan tinggi kon : ";
   cin&gt;&gt;tinggi;
   cout&lt;&lt;"\tSila masukkan jejari kon : ";
   cin&gt;&gt;jejari;
   
   isipadukon = (pai * (jejari*jejari) * ((tinggi)/3));

   cout&lt;&lt; fixed&lt;&lt;setprecision(2)&lt;&lt;endl;
   cout&lt;&lt;"\tTingi :"&lt;&lt;tinggi&lt;&lt;endl;
   cout&lt;&lt;"\tJejari :"&lt;&lt;jejari&lt;&lt;endl;
   cout&lt;&lt;"\tVolume :"&lt;&lt;isipadukon&lt;&lt;endl;

   return isipadukon;
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-09-29 07:28:19 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/72616633</guid>
      </item>
      <item>
         <title>ZAIHIZRAI</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/74836691</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;
using namespace.std;
float kiraisipadu2(float radius,float height);
int r,h;
float sphere,cone,totalisipadu,hemisphere;
cons int Pi=3.147

int main ()
{
cout&lt;&lt;"Masukkan Radius"&lt;&lt;endl;
cin&gt;&gt;r;

cout&lt;&lt;"Masukkan tinggi"&lt;&lt;endl;
cin&gt;&gt;h;

cout&lt;&lt;"Isipadu adalah"&lt;&lt;kiraisipadu2(r,h);
}

float kiraisipadu2(float radius, float height)
float volume,hemisphere,cone;
cone = ((PI*(raduys*radius*radius)/2;
volume-cone+hemisphere;
return volume
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-10-10 13:38:43 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/74836691</guid>
      </item>
      <item>
         <title>siti hajar</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/87189952</link>
         <description><![CDATA[<p>#include &lt;iostream.h&gt;</p><p>float kiraIsipadu2(float radius, float height); float PI = 22/7;&nbsp;</p><p>float height;</p><p>float radius;&nbsp;</p><p>float volume;</p><p>int main()</p><p>{</p><p>cout&lt;&lt; " please enter the radius:";&nbsp;</p><p>cin&gt;&gt; radius;&nbsp;</p><p>cout&lt;&lt; " please enter the height:";</p><p>cin&gt;&gt; height;</p><p>cout&lt;&lt; "the volume is :"&lt;&lt;kiraIsipadu2(radius,height);</p><p>}</p><p>float kiraIsipadu2(float radius, float height) {&nbsp;</p><p>float volume,hemisphere,cone;&nbsp;</p><p>cone = ((PI*(radius*radius)*height); hemisphere=((4/3*PI(radius*radius*radius))/2;</p><p>volume= cone+hemisphere;&nbsp;</p><p>return volume;&nbsp;</p><p>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-12-21 17:49:30 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/Group_B_Soalan_b/wish/87189952</guid>
      </item>
   </channel>
</rss>
