<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>การเขียนโปรแกรมแบบวนซ้ำ by rungrote mangkham</title>
      <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh</link>
      <description>Made with mirth</description>
      <language>en-us</language>
      <pubDate>2021-09-10 03:15:12 UTC</pubDate>
      <lastBuildDate>2026-01-25 17:08:56 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>สวัสดีครับ ผมนายนิธิกร งามพริ้ง เลขที่1 ข้อ1</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729899152</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br><br>int main()<br>{<br>&nbsp; &nbsp; for (int i = 1; i &lt;= 5; i++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n", i);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 03:21:10 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729899152</guid>
      </item>
      <item>
         <title>work</title>
         <author>rotecomp1</author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729900987</link>
         <description><![CDATA[<div>ข้อที่ 1 แสดงเลข 1-5<br>ข้อที่ 2 แสดงเลข 1-5 แบบเพิ่มจำนวนขึ้นที่ละแถว<br>ข้อที่ 3<br>5<br>54<br>543<br>5432<br>54321<br>-----------------------------------<br>ข้อที่ 4<br>54321<br>5432<br>543<br>54<br>1</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 03:21:59 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729900987</guid>
      </item>
      <item>
         <title>ข้อ1.นาย​พิทักษ์​พงศ์​ ศ​ิ​ร​ิ​บวร​วิทย์​ เลขที่​5​</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729908197</link>
         <description><![CDATA[<div>#include&lt;stdio.h&gt;<br>int n;<br>int main()​{<br>do{<br>n++;<br>printf​("%d\n", n)​;<br><br>}​while(n&lt;6);</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 03:25:10 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729908197</guid>
      </item>
      <item>
         <title>(ข้อ1)นาย ภูตะวัน อ่อนอินทร์ เลขที่2</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729921369</link>
         <description><![CDATA[<pre>#include &lt;stdio.h&gt;
int main()
{
int n = 1;
while (n &lt;= 5) {
printf("%d\n", n);
n++;</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 03:31:07 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1729921369</guid>
      </item>
      <item>
         <title>ข้อ2 นิธิกร งามพริ้ง เลขที่1</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730001070</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;conio.h&gt;<br><br>int main()<br>{<br>&nbsp; &nbsp; for(int i=1; i&lt;=5; i++)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; for(int n=1;n&lt;=i;n++)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d",n);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("\n");<br>&nbsp; &nbsp; }<br><br>&nbsp; //&nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 04:12:31 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730001070</guid>
      </item>
      <item>
         <title>ข้อ3.นาย​พิทักษ์​พงศ์​ ศ​ิ​ร​ิ​บวร​วิทย์​ เลขที่​5​</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730004284</link>
         <description><![CDATA[<div>int main()<br>&nbsp;{<br>&nbsp; &nbsp; &nbsp;for(int i=5; i&lt;=1; i++)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for(int n=5;n&lt;=i;n++)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("%d",n);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("\n");<br>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; <br>&nbsp;}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 04:14:20 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730004284</guid>
      </item>
      <item>
         <title>ข้อ4.นาย​พิทักษ์​พงศ์​ ศ​ิ​ร​ิ​บวร​วิทย์​ เลขที่​5​</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730005103</link>
         <description><![CDATA[<div>int main()<br>&nbsp;{<br>&nbsp; &nbsp; &nbsp;for(int i=5; i&gt;=1; i--)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for(int n=5;n&gt;=i;n--)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("%d",n);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("\n");<br>&nbsp; &nbsp; &nbsp;}</div><div>&nbsp; <br>&nbsp;}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 04:14:49 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730005103</guid>
      </item>
      <item>
         <title>ข้อ3 นิธิกร งามพริ้ง เลขที่1</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730010490</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;conio.h&gt;<br><br>int main()<br>&nbsp;{<br>&nbsp; &nbsp; &nbsp;for(int i=5; i&gt;=1; i--)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for(int n=5;n&gt;=i;n--)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("%d",n);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("\n");<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp;<br>&nbsp;}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-10 04:18:02 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1730010490</guid>
      </item>
      <item>
         <title>ข้อที่1 ฐิติวัฒน์ ประเสริฐสังข์ เลขที่4</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764681771</link>
         <description><![CDATA[<div>#include<br>int n;<br>int main()​{<br>do{<br>n++;<br>printf​("%d\n", n)​;<br><br>}​while(n&lt;6);</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-24 02:58:40 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764681771</guid>
      </item>
      <item>
         <title>ข้อที่2 ฐิติวัฒน์ ประเสริฐสังข์ เลขที่4</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764683877</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;conio.h&gt;<br><br>int main()<br>{<br>&nbsp; &nbsp; for(int i=1; i&lt;=5; i++)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; for(int n=1;n&lt;=i;n++)<br>&nbsp; &nbsp; &nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("%d",n);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("\n");<br>&nbsp; &nbsp; }<br><br>&nbsp; //&nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-24 02:59:43 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764683877</guid>
      </item>
      <item>
         <title>ข้อที่3 ฐิติวัฒน์ ประเสริฐสังข์ เลขที่4</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764685449</link>
         <description><![CDATA[<div>int main()<br>&nbsp;{<br>&nbsp; &nbsp; &nbsp;for(int i=5; i&lt;=1; i++)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for(int n=5;n&lt;=i;n++)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("%d",n);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("\n");<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp;&nbsp;<br>&nbsp;}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-24 03:00:30 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764685449</guid>
      </item>
      <item>
         <title>ข้อที่4 ฐิติวัฒน์ ประเสริฐสังข์ เลขที่4 </title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764687230</link>
         <description><![CDATA[<div>int main()<br>&nbsp;{<br>&nbsp; &nbsp; &nbsp;for(int i=5; i&gt;=1; i--)<br>&nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for(int n=5;n&gt;=i;n--)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("%d",n);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf("\n");<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp;&nbsp;<br>&nbsp;}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-24 03:01:22 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764687230</guid>
      </item>
      <item>
         <title>นางสาว ธิดารัตน์ ตาราษี เลขที่13 ข้อ 1</title>
         <author></author>
         <link>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764696425</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br><br>int main()<br>{<br>&nbsp; &nbsp; for (int i = 1; i &lt;= 5; i++) {<br>&nbsp; &nbsp; &nbsp; &nbsp; printf("%d\n", i);<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-09-24 03:05:49 UTC</pubDate>
         <guid>https://padlet.com/rotecomp1/5c153dd8zurqjmbh/wish/1764696425</guid>
      </item>
   </channel>
</rss>
