<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Hannah by Super Teachers League 1 STL</title>
      <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-05-09 04:15:03 UTC</pubDate>
      <lastBuildDate>2025-12-23 19:09:20 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f467.png</url>
      </image>
      <item>
         <title>Input Keyboard</title>
         <author>admin2719</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2583124282</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner umur = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Sila masukkan umur");<br>&nbsp; &nbsp; int age = umur.nextInt();<br>&nbsp; &nbsp; System.out.println("Umur anda: "+age);<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-09 04:15:31 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2583124282</guid>
      </item>
      <item>
         <title></title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586474334</link>
         <description><![CDATA[<div>i j.u.S<br>perut sakit virus membiak (Sekotak Anggurs[])<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 03:30:37 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586474334</guid>
      </item>
      <item>
         <title>input nama + umur</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586474832</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner nama = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Masukkan nama anda: ");<br>&nbsp; &nbsp; String nama1 = nama.nextLine();<br>&nbsp; &nbsp; System.out.println (" Nama anda ialah : " + nama1);<br>&nbsp; &nbsp; Scanner umur = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println(" Masukkan umur anda : ");<br>&nbsp; &nbsp; int umur1 = umur.nextInt();<br>&nbsp; &nbsp; System.out.println("Umur anda ialah : " + umur1 + " tahun");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 03:31:00 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586474832</guid>
      </item>
      <item>
         <title>INPUT KEYBOARD</title>
         <author>admin2719</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586483402</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>Scanner nilai = new Scanner(System.in);<br><mark>String nama = nilai.nextLine();</mark><br><mark>int umur = nilai.nextInt();</mark><br><mark>double harga = nilai.nextDouble();</mark></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 03:39:32 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586483402</guid>
      </item>
      <item>
         <title>pasar super</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586494662</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner nilai = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println(" Masukkan nama barang anda : ");<br>&nbsp; &nbsp; String nama = nilai.nextLine();<br>&nbsp; &nbsp; System.out.println(" Masukkan harga barang anda : ");<br>&nbsp; &nbsp; double harga = nilai.nextDouble();<br>&nbsp; &nbsp; System.out.println(" Masukkan bilangan barang anda : ");<br>&nbsp; &nbsp; int bil = nilai.nextInt();<br>&nbsp; &nbsp; System.out.println(" Total harga " + nama + " yang anda beli ialah : RM" + harga*bil );<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 03:51:22 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586494662</guid>
      </item>
      <item>
         <title>purata markah</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586501736</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner exam = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println(" Masukkan markah subjek pertama anda : ");<br>&nbsp; &nbsp; int markah1 = exam.nextInt();<br>&nbsp; &nbsp; System.out.println(" Masukkan markah subjek kedua anda : ");<br>&nbsp; &nbsp; int markah2 = exam.nextInt();<br>&nbsp; &nbsp; System.out.println(" Masukkan markah subjek ketiga anda : ");<br>&nbsp; &nbsp; int markah3 = exam.nextInt();<br>&nbsp; &nbsp; System.out.println(" Purata markah anda ialah : " + (markah1+markah2+markah3)/3 );<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 03:58:55 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586501736</guid>
      </item>
      <item>
         <title>bmi</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586510714</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner bmi = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Masukkan berat anda (kg) : ");<br>&nbsp; &nbsp; double berat = bmi.nextDouble();<br>&nbsp; &nbsp; System.out.println("Masukkan tinggi anda (m) : ");<br>&nbsp; &nbsp; double tinggi = bmi.nextDouble();<br>&nbsp; &nbsp; System.out.println("Bmi anda ialah : " + berat/(tinggi*tinggi) );<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 04:09:54 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586510714</guid>
      </item>
      <item>
         <title>luas bulatan + isipadu sfera</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586519814</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner luas = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Masukkan jejari bulatan anda (cm) : ");<br>&nbsp; &nbsp; double jejari = luas.nextDouble();<br>&nbsp; &nbsp; System.out.println("Luas bulatan anda ialah : " + 3.142*jejari*jejari + "cm²" );<br>&nbsp; &nbsp; System.out.println("Isipadu sfera anda ialah : " + (4/3)*3.142*jejari*jejari*jejari + "cm³");<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 04:20:17 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586519814</guid>
      </item>
      <item>
         <title>bmi control</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586555648</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner bmi = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Masukkan berat anda (kg) : ");<br>&nbsp; &nbsp; double berat = bmi.nextDouble();<br>&nbsp; &nbsp; System.out.println("Masukkan tinggi anda (m) : ");<br>&nbsp; &nbsp; double tinggi = bmi.nextDouble();<br>&nbsp; &nbsp; double bmi1 = (berat/(tinggi*tinggi));<br>&nbsp; &nbsp; System.out.println("Bmi anda ialah : " + bmi1 );<br>&nbsp; &nbsp; if (bmi1 &lt; 18.5)<br>&nbsp; &nbsp; {System.out.println("Anda underweight. ");}<br>&nbsp; &nbsp; else if (bmi1 &gt;= 18.5 &amp;&amp; bmi1 &lt; 25)<br>&nbsp; &nbsp; {System.out.println("Anda normal weight. ");}<br>&nbsp; &nbsp; else if (bmi1 &gt;= 25 &amp;&amp; bmi1 &lt; 31)<br>&nbsp; &nbsp; {System.out.println("Anda overweight. ");}<br>&nbsp; &nbsp; else if (bmi1 &gt; 31)<br>&nbsp; &nbsp; {System.out.println("Anda obese. ");}<br>&nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 04:52:55 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586555648</guid>
      </item>
      <item>
         <title>umur</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586569355</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner umur = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Masukkan umur anda : ");<br>&nbsp; &nbsp; int umur1 = umur.nextInt();<br>&nbsp; &nbsp; if (umur1 &lt; 12)<br>&nbsp; &nbsp; {System.out.println("Anda kanak-kanak riang. ");}<br>&nbsp; &nbsp; else if (umur1 &gt;= 12 &amp;&amp; umur1 &lt; 18)<br>&nbsp; &nbsp; {System.out.println("Tahniah, anda masih remaja. ");}<br>&nbsp; &nbsp; else if (umur1 &gt; 17)<br>&nbsp; &nbsp; {System.out.println("Kesian, anda dah dewasa.");}<br>&nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-11 05:03:23 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2586569355</guid>
      </item>
      <item>
         <title>switch</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592340241</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; int no = 3;<br>&nbsp; &nbsp; switch (no){<br>&nbsp; &nbsp; case 1 : System.out.println("Isnin");break;<br>&nbsp; &nbsp; case 2 : System.out.println("Selasa");break;<br>&nbsp; &nbsp; case 3 : System.out.println("Rabu");break;<br>&nbsp; &nbsp; case 4 : System.out.println("Khamis");break;<br>&nbsp; &nbsp; case 5 : System.out.println("Jumaat");break;<br>&nbsp; &nbsp; case 6 : System.out.println("Sabtu");break;<br>&nbsp; &nbsp; case 7 : System.out.println("Ahad");break;<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; }<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 03:43:51 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592340241</guid>
      </item>
      <item>
         <title>break</title>
         <author>admin2719</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592346797</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1256474177/13c2b97883bc651af9a7fec4926cb6fa/image.png" />
         <pubDate>2023-05-16 03:49:32 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592346797</guid>
      </item>
      <item>
         <title>switch input</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592355246</link>
         <description><![CDATA[<div>import java.util.Scanner;<br><br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner nom = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Masukkan nombor dari 1-7 : ");<br>&nbsp; &nbsp; int no = nom.nextInt();<br>&nbsp; &nbsp; switch (no){<br>&nbsp; &nbsp; case 1 : System.out.println("Isnin");break;<br>&nbsp; &nbsp; case 2 : System.out.println("Selasa");break;<br>&nbsp; &nbsp; case 3 : System.out.println("Rabu");break;<br>&nbsp; &nbsp; case 4 : System.out.println("Khamis");break;<br>&nbsp; &nbsp; case 5 : System.out.println("Jumaat");break;<br>&nbsp; &nbsp; case 6 : System.out.println("Sabtu");break;<br>&nbsp; &nbsp; case 7 : System.out.println("Ahad");break;<br>&nbsp; &nbsp; default: System.out.println("Masukkan 1-7 sahaja !");break;<br>&nbsp; &nbsp; }<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 03:56:20 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592355246</guid>
      </item>
      <item>
         <title>FOR LOOP</title>
         <author>admin2719</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592364336</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1256474177/82d1b9eb3803601b3b1aa7f47924ea4e/Screenshot_2023_05_16_at_12_04_10_PM.png" />
         <pubDate>2023-05-16 04:04:24 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592364336</guid>
      </item>
      <item>
         <title>loop 1</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592370439</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=3;a&lt;14;a=a+2){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:09:58 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592370439</guid>
      </item>
      <item>
         <title>loop 2</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592371851</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=19;a&gt;3;a=a-3){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:11:06 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592371851</guid>
      </item>
      <item>
         <title>loop 3</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592372807</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=20;a&gt;9;a=a-2){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:11:55 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592372807</guid>
      </item>
      <item>
         <title>loop 4</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592373663</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=0;a&lt;6;a=a+1){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:12:42 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592373663</guid>
      </item>
      <item>
         <title>loop 5</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592375116</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=30;a&gt;4;a=a-5){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:13:54 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592375116</guid>
      </item>
      <item>
         <title>loop 6</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592378582</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=3;a&lt;12;a=a+2){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:17:01 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592378582</guid>
      </item>
      <item>
         <title>loop 7</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592379329</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=3;a&lt;19;a=a+3){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:17:44 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592379329</guid>
      </item>
      <item>
         <title>loop 8</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592380254</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=23;a&gt;2;a=a-4){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:18:39 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592380254</guid>
      </item>
      <item>
         <title>loop 9</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592381216</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=13;a&lt;24;a=a+2){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:19:33 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592381216</guid>
      </item>
      <item>
         <title>loop 10</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592382233</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=36;a&gt;20;a=a-3){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; System.out.println("Tamat");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:20:26 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592382233</guid>
      </item>
      <item>
         <title>loop 11</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592390046</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; for (int a=0;a&lt;13;a=a+1){<br>&nbsp; &nbsp; &nbsp;System.out.println(a + " x 7 = " + a*7);<br>&nbsp; &nbsp; }<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:27:07 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592390046</guid>
      </item>
      <item>
         <title>loop 12</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592410706</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner bil = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Nama: ");<br>&nbsp; &nbsp; String nama = bil.nextLine();<br>&nbsp; &nbsp; System.out.println("Bilangan: ");<br>&nbsp; &nbsp; int bil1 = bil.nextInt();<br>&nbsp; &nbsp; for (int a=1;a&lt;bil1+1;a=a+1){<br>&nbsp; &nbsp; &nbsp;System.out.println(nama);<br>&nbsp; &nbsp; }<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:43:02 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592410706</guid>
      </item>
      <item>
         <title>loop 13</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592413695</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; System.out.println("Senaraikan nombor genap antara 5 hingga 25 ");<br>&nbsp; &nbsp; for (int a=6;a&lt;25;a=a+2){<br>&nbsp; &nbsp; &nbsp;System.out.println(a);<br>&nbsp; &nbsp; }<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:45:25 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592413695</guid>
      </item>
      <item>
         <title>loop 14</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592419858</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br><br>&nbsp; &nbsp; for (int a=1;a&lt;=10;a=a+1){ System.out.println(a);<br>}<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:49:39 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592419858</guid>
      </item>
      <item>
         <title>loop 15</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592423034</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br><br>int a=1;<br>while (a&lt;=10){<br>&nbsp; System.out.println(a);<br>&nbsp; a=a+1;<br>}<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:52:06 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592423034</guid>
      </item>
      <item>
         <title>do while</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592427417</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br><br>int a=1;<br>do { System.out.println(a);<br>a=a+1;<br>} while (a&lt;=10);<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 04:55:18 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592427417</guid>
      </item>
      <item>
         <title>switch 1</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592436205</link>
         <description><![CDATA[<div>public class Main {<br>&nbsp; public static void main(String[] args) {<br>for (int a = 4; a&lt;=16;a=a+3)<br>&nbsp; System.out.print(a+" ");<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-16 05:02:00 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2592436205</guid>
      </item>
      <item>
         <title>max min random array</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595785595</link>
         <description><![CDATA[<div>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; int x = (int)(Math.random()*10);<br>&nbsp; &nbsp; int y = (int)(Math.random()*10);<br>&nbsp; &nbsp; System.out.println("x = "+x);<br>&nbsp; &nbsp; System.out.println("y = "+y);<br>&nbsp; &nbsp; System.out.println("Min = "+Math.min(x,y));<br>&nbsp; &nbsp; System.out.println("Max = "+Math.max(x,y));<br>&nbsp; &nbsp; System.out.println("Random = "+(int)(Math.random()*10));<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 05:11:07 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595785595</guid>
      </item>
      <item>
         <title>rock paper scissors ( random version )</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595858816</link>
         <description><![CDATA[<div>public static void main(String[] args) {<br>&nbsp; &nbsp; int x = (int)(Math.random()*3+1);<br>&nbsp; &nbsp; int y = (int)(Math.random()*3+1);<br>&nbsp; &nbsp; String xo ="";<br>&nbsp; &nbsp; String yo ="";<br>&nbsp; &nbsp; if (x==1){xo="PAPER";};<br>&nbsp; &nbsp; if (x==2){xo="ROCK";};<br>&nbsp; &nbsp; if (x==3){xo="SCISSORS";};<br>&nbsp; &nbsp; if (y==1){yo="PAPER";};<br>&nbsp; &nbsp; if (y==2){yo="ROCK";};<br>&nbsp; &nbsp; if (y==3){yo="SCISSORS";};<br>&nbsp; &nbsp; System.out.println("Cikgu = "+xo+" ("+x+")");<br>&nbsp; &nbsp; System.out.println("Hannah = "+yo+" ("+y+")");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (x==1&amp;&amp;y==1){System.out.println("Win = Tie");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==2){System.out.println("Win = Tie");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==3){System.out.println("Win = Tie");}<br>&nbsp; &nbsp; else if (x==1&amp;&amp;y==2){System.out.println("Win = Cikgu");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==3){System.out.println("Win = Cikgu");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==1){System.out.println("Win = Cikgu");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==1){System.out.println("Win = Hannah");}<br>&nbsp; &nbsp; else if (x==1&amp;&amp;y==3){System.out.println("Win = Hannah");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==2){System.out.println("Win = Hannah");}<br>&nbsp; &nbsp;<br><br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 06:09:09 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595858816</guid>
      </item>
      <item>
         <title>rock paper scissors ( 1 player version )</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595882676</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Main {<br>public static void main(String[] args) {<br>&nbsp; Scanner nom = new Scanner(System.in);<br>&nbsp;&nbsp;<br>&nbsp; &nbsp; System.out.println("1 = ROCK, 2 = PAPER, 3 = SCISSORS ");<br>&nbsp; &nbsp; System.out.print("Player, enter your number from 1-3 : ");<br>&nbsp; &nbsp; int x = nom.nextInt();<br>&nbsp; &nbsp; int y = (int)(Math.random()*3+1);<br>&nbsp; &nbsp; String xo ="";<br>&nbsp; &nbsp; String yo ="";<br>&nbsp; &nbsp; if (x==1){xo="ROCK";};<br>&nbsp; &nbsp; if (x==2){xo="PAPER";};<br>&nbsp; &nbsp; if (x==3){xo="SCISSORS";};<br>&nbsp; &nbsp; if (y==1){yo="ROCK";};<br>&nbsp; &nbsp; if (y==2){yo="PAPER";};<br>&nbsp; &nbsp; if (y==3){yo="SCISSORS";};<br>&nbsp; &nbsp; System.out.println("Player = "+xo+" ("+x+")");<br>&nbsp; &nbsp; System.out.println("Computer = "+yo+" ("+y+")");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (x==1&amp;&amp;y==1){System.out.println("Score = Tie");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==2){System.out.println("Score = Tie");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==3){System.out.println("Score = Tie");}<br>&nbsp; &nbsp; else if (x==1&amp;&amp;y==3){System.out.println("Score = Player win");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==1){System.out.println("Score = Player win");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==2){System.out.println("Score = Player win");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==1){System.out.println("Score = Computer win");}<br>&nbsp; &nbsp; else if (x==1&amp;&amp;y==2){System.out.println("Score = Computer win");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==3){System.out.println("Score = Computer win");}<br>&nbsp; &nbsp;<br><br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 06:29:14 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595882676</guid>
      </item>
      <item>
         <title>rock paper scissors ( 2 player version )</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595899433</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>public class Main {<br>public static void main(String[] args) {<br>&nbsp; Scanner nom = new Scanner(System.in);<br>&nbsp;&nbsp;<br>&nbsp; &nbsp; System.out.println("1 = ROCK, 2 = PAPER, 3 = SCISSORS ");<br>&nbsp; &nbsp; System.out.print("Player 1, enter a number from 1-3 : ");<br>&nbsp; &nbsp; int x = nom.nextInt();<br>&nbsp; &nbsp; System.out.print("Player 2, enter a number from 1-3 : ");<br>&nbsp; &nbsp; int y = nom.nextInt();<br>&nbsp; &nbsp; String xo ="";<br>&nbsp; &nbsp; String yo ="";<br>&nbsp; &nbsp; if (x==1){xo="ROCK";};<br>&nbsp; &nbsp; if (x==2){xo="PAPER";};<br>&nbsp; &nbsp; if (x==3){xo="SCISSORS";};<br>&nbsp; &nbsp; if (y==1){yo="ROCK";};<br>&nbsp; &nbsp; if (y==2){yo="PAPER";};<br>&nbsp; &nbsp; if (y==3){yo="SCISSORS";};<br>&nbsp; &nbsp; System.out.println("Player 1 = "+xo+" ("+x+")");<br>&nbsp; &nbsp; System.out.println("Player 2 = "+yo+" ("+y+")");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (x==1&amp;&amp;y==1){System.out.println("Score = Tie");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==2){System.out.println("Score = Tie");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==3){System.out.println("Score = Tie");}<br>&nbsp; &nbsp; else if (x==1&amp;&amp;y==3){System.out.println("Score = Player 1 win");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==1){System.out.println("Score = Player 1 win");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==2){System.out.println("Score = Player 1 win");}<br>&nbsp; &nbsp; else if (x==3&amp;&amp;y==1){System.out.println("Score = Player 2 win");}<br>&nbsp; &nbsp; else if (x==1&amp;&amp;y==2){System.out.println("Score = Player 2 win");}<br>&nbsp; &nbsp; else if (x==2&amp;&amp;y==3){System.out.println("Score = Player 2 win");}<br>&nbsp; &nbsp;<br><br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 06:44:32 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2595899433</guid>
      </item>
      <item>
         <title>array int</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600942957</link>
         <description><![CDATA[<div>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; int [] color ={60,77,23,58,96,86,45,89,100,360};<br>&nbsp; &nbsp; for (int a=0;a&lt;color.length;a=a+1) {<br>&nbsp; &nbsp; &nbsp;System.out.println(color[a]);&nbsp;<br>&nbsp; &nbsp; }&nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-23 02:49:11 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600942957</guid>
      </item>
      <item>
         <title>array string</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600954456</link>
         <description><![CDATA[<div>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; String [] color ={"red", "orange", "yellow", "green","blue", "indigo", "violet" };<br>&nbsp; &nbsp; for (int a=0;a&lt;color.length;a++) {<br>&nbsp; &nbsp; &nbsp;System.out.println(color[a]);&nbsp;<br>&nbsp; &nbsp; }&nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-23 02:57:30 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600954456</guid>
      </item>
      <item>
         <title>array table 1</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600968132</link>
         <description><![CDATA[<div>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; String [] nama ={"Kamal","Danial","Yusof"};<br>&nbsp; &nbsp; String [] rumah ={"Marikh","Pluto","Jupiter"};<br>&nbsp; &nbsp; double [] mata ={35.2,44.2,56.1};<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; for (int a=0;a&lt;nama.length;a++) {<br>&nbsp; &nbsp; &nbsp;System.out.println(nama[a]);&nbsp;<br>&nbsp; &nbsp; &nbsp; System.out.println(rumah[a]);<br>&nbsp; &nbsp; &nbsp; System.out.println(mata[a]);<br>&nbsp; &nbsp; &nbsp; System.out.println(" ");&nbsp;<br>&nbsp; &nbsp; }<br><br><br><br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-23 03:06:55 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600968132</guid>
      </item>
      <item>
         <title>array table 2</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600979515</link>
         <description><![CDATA[<div>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; String [] nama ={"Adam","Alia","Wong","Devi"};<br>&nbsp; &nbsp; int [] umur ={16,17,16,17};<br>&nbsp; &nbsp; double [] tinggi ={182.1,172.5,173.2,175.0};<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; System.out.println("Nama\tUmur\tTinggi");<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; for (int a=0;a&lt;nama.length;a++) {<br>System.out.println(nama[a]+"\t"+umur[a]+"\t"+"\t"+tinggi[a]);&nbsp;<br>&nbsp; &nbsp; }<br><br><br><br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-23 03:16:13 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600979515</guid>
      </item>
      <item>
         <title>cupid name randomizer ♡</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600998049</link>
         <description><![CDATA[<div>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; String [] male ={"Ali","Abu","Bob","Chong","Danial","Darwish","Ehsan","Fizi","Haris","Jamal","Kamal"};<br>&nbsp; &nbsp; String [] female ={"Alicia","Farah","Husna","Wani","Aliya","Natasya","Farisha","Batrisya","Balqis","Emily","Amy"};<br>&nbsp; &nbsp; int a = (int)(Math.random()*(male.length));<br>&nbsp; &nbsp; int b = (int)(Math.random()*(female.length));<br>&nbsp; &nbsp; System.out.println(male[a]+" ♡ " +female[b]);<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-23 03:31:42 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2600998049</guid>
      </item>
      <item>
         <title>love tester</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2601015028</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner name = new Scanner(System.in);<br>&nbsp; &nbsp; System.out.println("Name 1 = ");<br>&nbsp; &nbsp; String name1 = name.nextLine();<br>&nbsp; &nbsp; System.out.println("Name 2 = ");<br>&nbsp; &nbsp; String name2 = name.nextLine();<br>&nbsp; &nbsp; int a = (int)(Math.random()*100);&nbsp;<br>&nbsp; &nbsp; System.out.println(name1+" ♡ " +name2);<br>&nbsp; &nbsp; System.out.println(a +"%");<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-23 03:45:59 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2601015028</guid>
      </item>
      <item>
         <title>game tambah</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2601042696</link>
         <description><![CDATA[<div>import java.util.Scanner;<br>class Main {<br>&nbsp; public static void main(String[] args) {<br>&nbsp; &nbsp; Scanner input = new Scanner(System.in);<br>&nbsp; &nbsp; int a = (int)(1+Math.random()*9);<br>&nbsp; &nbsp; int b = (int)(1+Math.random()*9);<br>&nbsp; &nbsp; System.out.println(a+" + "+b+" = ?");<br>&nbsp; &nbsp; int jawapan = input.nextInt();<br>&nbsp; &nbsp; int jawapan1 = a+b;<br>&nbsp; &nbsp; if (jawapan == jawapan1){<br>&nbsp; &nbsp; &nbsp; String [] betul = {"Wah, anda bernas !","Tahniah, jawapan anda betul.","Anda memang gempak."};<br>&nbsp; &nbsp; &nbsp; int a1 = (int)(Math.random()*(betul.length));<br>&nbsp; &nbsp; &nbsp; System.out.println(betul[a1]);<br>&nbsp; &nbsp; } &nbsp;<br>&nbsp; &nbsp; else {<br>&nbsp; &nbsp; &nbsp; String [] salah = {"Boooo, anda salah !","Salah, anda kurang bijak.","Anda tidak gempak, maaf."};<br>&nbsp; &nbsp; &nbsp; int b1 = (int)(Math.random()*(salah.length));<br>&nbsp; &nbsp; &nbsp; System.out.println(salah[b1]);<br><br>}<br>&nbsp; }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-23 04:13:13 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2601042696</guid>
      </item>
      <item>
         <title>html</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2604450912</link>
         <description><![CDATA[<div>&lt;html&gt;<br>&lt;head&gt;<br>&lt;title&gt;Hannah HTML&lt;/title&gt;<br>&lt;/head&gt;<br>&lt;body&gt;<br>[ Webdesign ]<br>&lt;li&gt;HTML&lt;/li&gt;<br>&lt;li&gt;javascript&lt;/li&gt;<br>&lt;li&gt;css&lt;/li&gt;<br>&lt;li&gt;PHP&lt;/li&gt;<br>&lt;li&gt;SQL&lt;/li&gt;<br>&lt;br&gt;<br>[ Style ]<br>&lt;br&gt;&lt;b&gt;HANNAH&lt;/b&gt;<br>&lt;br&gt;&lt;i&gt;HANNAH&lt;/i&gt;<br>&lt;br&gt;&lt;u&gt;HANNAH&lt;/u&gt;<br>&lt;br&gt;&lt;strike&gt;HANNAH&lt;/strike&gt;<br>&lt;br&gt;x&lt;sup&gt;2&lt;/sup&gt;–6x+5<br>&lt;br&gt;CuCl&lt;sub&gt;2&lt;/sub&gt;<br>&lt;br&gt;H&lt;sub&gt;2&lt;/sub&gt;SO&lt;sub&gt;4&lt;/sub&gt;<br>&lt;br&gt;&lt;mark&gt;HANNAH&lt;/mark&gt;<br>&lt;br&gt;<br>&lt;li&gt;HANNAH&lt;/li&gt;<br>&lt;span&gt;HANNAH&lt;/span&gt;<br>&lt;div style="color:red"&gt;HANNAH&lt;/div&gt;<br>&lt;div style="background-color:red"&gt;HANNAH&lt;/div&gt;<br>&lt;a href="<a href="https://google.com/">https://google.com</a>"&gt;GOOGLE&lt;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-25 07:10:37 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2604450912</guid>
      </item>
      <item>
         <title>html table</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2609234143</link>
         <description><![CDATA[<div>&lt;html&gt;<br>&lt;head&gt;&lt;style&gt;<br>table,td,th {<br>&nbsp; &nbsp; border:3px solid purple;<br>&nbsp; &nbsp; border-collapse: collapse;<br>&nbsp; &nbsp; text-align:center;<br>&nbsp; &nbsp; font-family:Arial;<br>&nbsp; &nbsp; }<br>th {background-color:#c8a2c8;}<br>td {background-color:#E6D1F2;}<br>&lt;/style&gt;&lt;/head&gt;<br>&lt;body&gt;<br><br>&lt;table&gt;<br>&lt;tr&gt;&lt;th&gt;NAMA&lt;/th&gt;&lt;th&gt;UMUR&lt;/th&gt;&lt;/tr&gt;<br>&lt;tr&gt;&lt;td&gt;ADAM&lt;/td&gt;&lt;td &gt;15&lt;/td&gt;&lt;/tr&gt;<br>&lt;tr&gt;&lt;td&gt;HANNAH&lt;/td&gt;&lt;td&gt;18&lt;/td&gt;&lt;/tr&gt;<br>&lt;/table&gt;<br><br>&lt;/body&gt;<br><br>&lt;/html&gt;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-30 14:39:24 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2609234143</guid>
      </item>
      <item>
         <title>gform pt 1</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2628215940</link>
         <description><![CDATA[<div>&lt;html&gt;<br>&lt;head&gt;<br>&lt;title&gt;asdasd&lt;/title&gt;<br>&lt;/head&gt;<br><br>&lt;body&gt;<br>&lt;h2&gt;BIODATA DIRI&lt;/h2&gt;<br>&lt;form&gt;<br>nama : &lt;input type="text"&gt;&nbsp;<br>&lt;p&gt;<br>PIN : &lt;input type="password"&gt;&nbsp;<br>&lt;p&gt;<br>SPM :<br>&lt;select&gt;<br>&lt;option&gt;9A&lt;/option&gt;<br>&lt;option&gt;8A&lt;/option&gt;<br>&lt;option&gt;7A&lt;/option&gt;<br>&lt;option&gt;6A&lt;/option&gt;<br>&lt;option&gt;5A&lt;/option&gt;<br>&lt;/select&gt;<br>&lt;p&gt;<br>alamat :<br>&lt;br&gt;<br>&lt;textarea&nbsp; rows="5" cols="25"&gt;<br>172, Persiaran Sultan Salahuddin Abdul Aziz Shah, Presint 1, 62000 Putrajaya, Wilayah Persekutuan Putrajaya<br>&lt;/textarea&gt;<br>&lt;p&gt;<br>no telefon : &lt;input type="number"&gt;<br>&lt;p&gt;<br>sekolah : &lt;input type="text"&gt;<br>&lt;p&gt;<br>hobi : &lt;input type="text"&gt;<br>&lt;p&gt;<br>jantina :<br>&lt;br&gt;&lt;input type="radio" name="hannah" &gt;Lelaki<br>&lt;br&gt;&lt;input type="radio" name="hannah" &gt;Perempuan<br>&lt;br&gt;&lt;input type="radio" name="hannah" &gt;Khunsa<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-20 14:15:36 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2628215940</guid>
      </item>
      <item>
         <title>gform 2</title>
         <author>hannahzahra05</author>
         <link>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2628218293</link>
         <description><![CDATA[<div>&lt;p&gt;<br>Makanan Kegemaran<br>&lt;br&gt;&lt;input type="checkbox"&gt; Keropok Lekor<br>&lt;br&gt;&lt;input type="checkbox"&gt; Maggie<br>&lt;br&gt;&lt;input type="checkbox"&gt; Lobsters<br>&lt;br&gt;&lt;input type="checkbox"&gt; Udang Masak Petai<br>&lt;br&gt;&lt;input type="checkbox"&gt; Nasi Goreng Kampung (Pedas :P)<br>&lt;p&gt;<br>&lt;!--&nbsp; KOMEN&nbsp; --&gt;<br>&lt;/form&gt;<br>&lt;/body&gt;<br><br>&lt;/html&gt;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-20 14:18:40 UTC</pubDate>
         <guid>https://padlet.com/admin2719/o3bpii8hxbgfvffq/wish/2628218293</guid>
      </item>
   </channel>
</rss>
