<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>T61 - Intro to Class and Object : exercise by Julie Yew</title>
      <link>https://padlet.com/hanjojo09/T61_Temp_class</link>
      <description>Class Temp</description>
      <language>en-us</language>
      <pubDate>2017-07-24 02:03:40 UTC</pubDate>
      <lastBuildDate>2023-05-19 13:19:53 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet-assets.s3.amazonaws.com/icons/Brightnessdown.png</url>
      </image>
      <item>
         <title>Post your answer for the question on Class Temp that i g</title>
         <author>hanjojo09</author>
         <link>https://padlet.com/hanjojo09/T61_Temp_class/wish/179277616</link>
         <description><![CDATA[<div>..full question please refer to your friend.&nbsp; If your answer has problems..pls state what problems ...if have no problem and can work, please state "Error Free".&nbsp;<br>thanks<br>Mdm Julie</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-07-24 02:06:04 UTC</pubDate>
         <guid>https://padlet.com/hanjojo09/T61_Temp_class/wish/179277616</guid>
      </item>
      <item>
         <title>tan zhi wei error free</title>
         <author>kelvintan789</author>
         <link>https://padlet.com/hanjojo09/T61_Temp_class/wish/179376548</link>
         <description><![CDATA[<div>#include&lt;iostream&gt;
<br>#include&lt;iomanip&gt;
<br>using namespace std;
<br>
<br>class temp
<br>{
<br>	float f,c;
<br>	public:
<br>		void flo()
<br>		{
<br>			cout&lt;&lt;"Enter temperature in Fareheit : ";
<br>			cin&gt;&gt;f;
<br>		}
<br>		void cal()
<br>		{
<br>			c=(f-32)/1.8;
<br>			
<br>		}
<br>		void display()
<br>		{
<br>			cout&lt;&lt;fixed&lt;&lt;setprecision(1)&lt;&lt;f&lt;&lt;"Fanrenheit is equal to "&lt;&lt;c&lt;&lt;"celsius";
<br>		}
<br>};
<br>
<br>int main()
<br>{ temp a;
<br> a.flo();
<br> a.cal();
<br> a.display();
<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-07-25 03:57:09 UTC</pubDate>
         <guid>https://padlet.com/hanjojo09/T61_Temp_class/wish/179376548</guid>
      </item>
      <item>
         <title>error free</title>
         <author>1161201454</author>
         <link>https://padlet.com/hanjojo09/T61_Temp_class/wish/179402579</link>
         <description><![CDATA[<div>#include&lt;iostream&gt;<br>using namespace std;<br>class Temp<br>{ private: <br>&nbsp; float f, c;<br>&nbsp; <br>&nbsp; public:<br>&nbsp; 	void input()<br>&nbsp; 	{ cout&lt;&lt;"Enter Fahrenheit&nbsp; &nbsp;<br>temperature : ";<br>&nbsp; &nbsp; &nbsp; cin&gt;&gt;f;<br>&nbsp; &nbsp; &nbsp; c = Celsius(f);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; float Celsius(float f)<br>&nbsp; &nbsp; { return (f-32.0)/1.8;<br>&nbsp; &nbsp; } <br>&nbsp; &nbsp; void output()<br>&nbsp; &nbsp; { cout&lt;&lt;"Celsius value is "&lt;&lt;c&lt;&lt;endl;<br>	}<br>};<br><br>int main()<br>{ Temp t;<br>&nbsp; <br>&nbsp; t.input();<br>&nbsp; <br>&nbsp; t.output();<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-07-25 11:55:55 UTC</pubDate>
         <guid>https://padlet.com/hanjojo09/T61_Temp_class/wish/179402579</guid>
      </item>
      <item>
         <title></title>
         <author>mikailbusst</author>
         <link>https://padlet.com/hanjojo09/T61_Temp_class/wish/179408954</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/129651227/1effdc8538164ef25b9ea657b45e209d/Solution.txt" />
         <pubDate>2017-07-25 13:41:51 UTC</pubDate>
         <guid>https://padlet.com/hanjojo09/T61_Temp_class/wish/179408954</guid>
      </item>
      <item>
         <title>1161202357 Lim Yong Jie</title>
         <author>1161202357</author>
         <link>https://padlet.com/hanjojo09/T61_Temp_class/wish/179421306</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>#include &lt;iomanip&gt;<br>using namespace std;<br><br><br>class Temp{<br>	float f,c;<br>	public :<br>		void flo()<br>		{<br>			cout&lt;&lt;"Enter temperature in Farenheit : ";<br>			cin&gt;&gt;f;<br>		}<br>		void cal()<br>		{<br>			c = (f-32)/1.8;<br>		}<br>		void display()<br>		{<br>			cout&lt;&lt;fixed&lt;&lt;setprecision(1)&lt;&lt;f&lt;&lt;" Farenheit is equal to "&lt;&lt;c&lt;&lt;" celcius.";<br>		}<br>};<br><br>int main()<br>{<br>	Temp a;<br>	a.flo();<br>	a.cal();<br>	a.display();<br>}<br>17:38<br><br>#include&lt;iostream&gt;<br>using namespace std;<br>class Person<br>{ <br>&nbsp; string nickname, description;<br>&nbsp; int age;<br>&nbsp; public:<br>&nbsp; &nbsp; void input()<br>&nbsp; &nbsp; { <br>&nbsp; &nbsp; <br>&nbsp; &nbsp; <br>&nbsp; &nbsp; &nbsp;cout&lt;&lt;"Enter nickname &nbsp; :";<br>&nbsp; &nbsp; &nbsp;cin&gt;&gt;nickname;<br>&nbsp; &nbsp; &nbsp;fflush(stdin);<br>&nbsp; &nbsp; &nbsp;cout&lt;&lt;"Enter description:";<br>&nbsp; &nbsp; &nbsp;getline(cin, description);<br>&nbsp; &nbsp; &nbsp;cout&lt;&lt;"Enter age&nbsp; &nbsp; &nbsp; &nbsp; :";<br>&nbsp; &nbsp; &nbsp;cin&gt;&gt;age;<br>	<br>&nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; <br>&nbsp; &nbsp; void output()<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp;cout&lt;&lt;"-----Output-------"&lt;&lt;endl;<br>&nbsp; &nbsp; &nbsp;cout&lt;&lt;nickname&lt;&lt;endl;<br>&nbsp; &nbsp; &nbsp;cout&lt;&lt;description&lt;&lt;endl;<br>&nbsp; &nbsp; &nbsp;cout&lt;&lt;age&lt;&lt;endl;<br>&nbsp; &nbsp; }<br>};<br><br>int main()<br>{ &nbsp; Person p[2];<br>for(int i=0;i&lt;2;i++){p[i].input();<br>}<br>&nbsp; &nbsp; <br>for(int i=0;i&lt;2;i++)<br>{p[i].output();<br>}<br>&nbsp; &nbsp; <br>&nbsp; &nbsp; <br>&nbsp; &nbsp; system("pause");<br>&nbsp; &nbsp; <br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2017-07-25 16:01:32 UTC</pubDate>
         <guid>https://padlet.com/hanjojo09/T61_Temp_class/wish/179421306</guid>
      </item>
      <item>
         <title>PHOA WEI ZHI 1161201244</title>
         <author>1161201244</author>
         <link>https://padlet.com/hanjojo09/T61_Temp_class/wish/179496280</link>
         <description><![CDATA[<div>ERROR FREE<br>#include&lt;iostream&gt;<br><br>using namespace std;<br><br>class Temp<br><br>{ float f, c;<br><br>&nbsp; public:<br><br>&nbsp; void enter()<br><br>&nbsp; { cout&lt;&lt;"Enter temperatures in Farenheit : ";<br><br>&nbsp; &nbsp; cin&gt;&gt;f;<br><br>&nbsp; }<br><br>&nbsp; void cal()<br><br>&nbsp; { c = (f-32)/1.8;<br><br>&nbsp; }<br><br>&nbsp; void dis()<br><br>&nbsp; { cout&lt;&lt;"Temperatures in Celcius is "&lt;&lt;c&lt;&lt;endl;<br><br>&nbsp; }<br><br>};<br><br><br><br>int main()<br><br>{<br><br>	Temp a;<br><br>	a.enter();<br><br>	a.cal();<br><br>	a.dis();<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2017-07-26 13:13:29 UTC</pubDate>
         <guid>https://padlet.com/hanjojo09/T61_Temp_class/wish/179496280</guid>
      </item>
      <item>
         <title>Amirul Harris 1161201269</title>
         <author>1161201269</author>
         <link>https://padlet.com/hanjojo09/T61_Temp_class/wish/179549303</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padletuploads.blob.core.windows.net/prod/209946164/bbd70dd1548b6ae7eac63794ed10c791/exe_Temp.txt" />
         <pubDate>2017-07-27 02:51:53 UTC</pubDate>
         <guid>https://padlet.com/hanjojo09/T61_Temp_class/wish/179549303</guid>
      </item>
   </channel>
</rss>
