<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>แฟ้มสะสมผลงานวิชาคอมพิวเตอร์เพื่อการเรียนรู้ (Dev c++) ของนายธนกร ปริมล ม. 5/1 เลขที่8 by Nawaphon Naksakun</title>
      <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-08-07 10:42:32 UTC</pubDate>
      <lastBuildDate>2025-05-13 03:18:34 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>X&gt;Y</title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668530545</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/973418a54f26583c19a876537835591e/Screenshot__1_.png" />
         <pubDate>2023-08-22 07:59:22 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668530545</guid>
      </item>
      <item>
         <title>X</title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668533422</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/4161fd336df483b90a750d249d75a171/Screenshot__2_.png" />
         <pubDate>2023-08-22 08:02:29 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668533422</guid>
      </item>
      <item>
         <title>-X, Y                                                                                                                                        </title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668542766</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/58ee4feed990b1a6ce07182c536961a4/Screenshot__3_.png" />
         <pubDate>2023-08-22 08:14:08 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668542766</guid>
      </item>
      <item>
         <title>X, -y</title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668548087</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/d691d4ba7b9a0a929e8c6fdc207fb3f5/Screenshot__4_.png" />
         <pubDate>2023-08-22 08:20:55 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668548087</guid>
      </item>
      <item>
         <title>-X, -Y</title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668549776</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/823fe159452bc8dfcd1122a5ea703d09/Screenshot__5_.png" />
         <pubDate>2023-08-22 08:23:02 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668549776</guid>
      </item>
      <item>
         <title>X = 0 , Y</title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668552909</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/70c20387475af117a25772ae3443a9dc/Screenshot__7_.png" />
         <pubDate>2023-08-22 08:27:25 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668552909</guid>
      </item>
      <item>
         <title>X, Y = 0</title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668554565</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;&nbsp; &nbsp;&nbsp;<br>#include &lt;conio.h&gt;&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; int main()&nbsp; &nbsp; {&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;int x,y ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Enter x:&nbsp; ");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;scanf("%d",&amp;x);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Enter y:&nbsp; ");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;scanf("%d",&amp;y);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("Operate of X Y Table\n");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("-------------------\n");<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("x + y = %d\n",x+y);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("x - y = %d\n",x-y);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("x * y = %d\n",x*y);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("x / y = %d\n",x/y);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;printf("x Mod y = %d\n",x%y);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;getch();&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; }<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/0f138dd812e66381bf8093bc9ce4e9be/Screenshot__8_.png" />
         <pubDate>2023-08-22 08:29:26 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2668554565</guid>
      </item>
      <item>
         <title></title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2683182947</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;conio.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; float base1,high1,area;<br>&nbsp; &nbsp; &nbsp; printf("Enter Base: ");<br>&nbsp; &nbsp; &nbsp; scanf("%f",&amp;base1);<br>&nbsp; &nbsp; &nbsp; printf("Enter High: ");<br>&nbsp; &nbsp; &nbsp; scanf("%f",&amp;high1);<br>&nbsp; &nbsp; &nbsp; area = 0.5*high1*base1;<br>&nbsp; &nbsp; &nbsp; printf("Area of Triangle is: %.2f\n",area);<br>&nbsp; &nbsp; getch();<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/940f34e34b4270a5314dad012ea4e182/Screenshot__3_.png" />
         <pubDate>2023-09-04 09:03:45 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2683182947</guid>
      </item>
      <item>
         <title></title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2683190831</link>
         <description><![CDATA[<div>#include &lt;stdio.h&gt;<br>#include &lt;conio.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; float base1,base2,high1,area;<br>&nbsp; &nbsp; &nbsp; printf("Enter Base1: ");<br>&nbsp; &nbsp; &nbsp; scanf("%f",&amp;base1);<br>&nbsp; &nbsp; &nbsp; printf("Enter Base2: ");<br>&nbsp; &nbsp; &nbsp; scanf("%f",&amp;base2);<br>&nbsp; &nbsp; &nbsp; printf("Enter High: ");<br>&nbsp; &nbsp; &nbsp; scanf("%f",&amp;high1);<br>&nbsp; &nbsp; &nbsp; area = 0.5*high1*(base1+base1);<br>&nbsp; &nbsp; &nbsp; printf("Area of Trapezoid is: %.3f\n",area);<br>&nbsp; &nbsp; getch();<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/ea6ff7b4fdef26ff219ed369a46e2bfa/Screenshot__4_.png" />
         <pubDate>2023-09-04 09:12:01 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2683190831</guid>
      </item>
      <item>
         <title>profile</title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684469429</link>
         <description><![CDATA[<div>#include&lt;stdio.h&gt;<br>#include&lt;conio.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; printf("My name : Ms.Nawaphon Naksakun\n");<br>&nbsp; &nbsp; printf("My Nickname : Aum\n");<br>&nbsp; &nbsp; printf("My Major : Art-Language\n");<br>&nbsp; &nbsp; printf("My School : Soidao Wittaya\n");<br>&nbsp; &nbsp; printf("My GPA : 3.99\n"); &nbsp;<br>&nbsp; &nbsp; getch();<br>}</div><div><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/45cafca61b9252c806d3ac704f3f8127/image.webp" />
         <pubDate>2023-09-05 07:27:09 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684469429</guid>
      </item>
      <item>
         <title></title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684523935</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/475092944678328c99fe52c29a24e1b2/n.webp" />
         <pubDate>2023-09-05 08:09:49 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684523935</guid>
      </item>
      <item>
         <title></title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684525047</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/69383ab86d976e7bc52ed02dcb96d5eb/ll.webp" />
         <pubDate>2023-09-05 08:10:51 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684525047</guid>
      </item>
      <item>
         <title></title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684546282</link>
         <description><![CDATA[<div><strong>include &lt;stdio.h&gt; &nbsp;<br>#include &lt;conio.h&gt; &nbsp;<br>int main() &nbsp;<br>{ &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp;char name[15],sname[20];<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("Input your name and surname : ");<br>&nbsp; &nbsp; &nbsp; &nbsp;scanf("%s%s",name,sname)&nbsp; &nbsp; ;<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("\n");<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("Hello Khun: &nbsp; %s",name);<br>&nbsp; &nbsp; &nbsp; &nbsp;printf(" &nbsp; ");<br>&nbsp; &nbsp; &nbsp; &nbsp;printf("%s",sname);<br>&nbsp; &nbsp; &nbsp; &nbsp;getch();<br>&nbsp; &nbsp; &nbsp; &nbsp;return 0;<br>}</strong></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/2de04aa8ae68fc227e0695c516e45737/Screenshot__1_.png" />
         <pubDate>2023-09-05 08:29:50 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684546282</guid>
      </item>
      <item>
         <title></title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684548552</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/ef479e62a1bdfcea685afe6751f50a9f/Screenshot__2_.png" />
         <pubDate>2023-09-05 08:31:28 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684548552</guid>
      </item>
      <item>
         <title></title>
         <author>nawaphon2743</author>
         <link>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684574743</link>
         <description><![CDATA[<div>#include&lt;stdio.h&gt;<br>#include&lt;conio.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; printf("-----My Profile-----\n");<br>&nbsp; &nbsp; printf("Name : Mr.Nawaphon Naksakun\n");<br>&nbsp; &nbsp; printf("Nickname :Aun\n");<br>&nbsp; &nbsp; printf("School : Soidao Wittaya\n");<br>&nbsp; &nbsp; printf("Address : 155 M.10 T.Sai-Khao Amp.Soidao Chantaburi 22180\n");<br>&nbsp; &nbsp; printf("Motto: This too, shall pass\n");&nbsp; &nbsp; &nbsp;&nbsp;<br>}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2061376991/6b0f9b935b7538736d81ddc21004af54/Screenshot__5_.png" />
         <pubDate>2023-09-05 08:55:50 UTC</pubDate>
         <guid>https://padlet.com/nawaphon2743/1syvz54392jodh7j/wish/2684574743</guid>
      </item>
   </channel>
</rss>
