<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>HSG Tin 8 NH 2022 2023 by P A</title>
      <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d</link>
      <description>Được tạo với một chút tư duy thông thái</description>
      <language>en-us</language>
      <pubDate>2022-01-21 08:30:55 UTC</pubDate>
      <lastBuildDate>2025-02-19 10:17:47 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Ngày 21/01/2022-Bài tập 1 -thầy Đạt</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004604983</link>
         <description><![CDATA[<div>{Bai 1. Nhap day n phan tu, xuat cac phan tu nguyen to cua day va tong cua chung}<br><br>program Bai1;<br>Uses crt;<br>Const Max=100;<br><br>Type M1C=Array[1..100] of Integer;<br><br>Var A:M1C;<br>&nbsp; &nbsp; n:Integer;<br><br>Function NT(a:Integer):Boolean;<br>&nbsp; &nbsp;var i,t:Integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; if a&lt;2 then exit(false);<br>&nbsp; &nbsp; &nbsp; if (a=2) or (a=3) then exit(true);<br><br>&nbsp; &nbsp; &nbsp; t:=trunc(sqrt(a));<br>&nbsp; &nbsp; &nbsp; for i:=2 to t do<br>&nbsp; &nbsp; &nbsp; &nbsp; if a mod i = 0 then exit(false);<br><br>&nbsp; &nbsp; &nbsp; exit(true);<br>&nbsp; &nbsp;end;<br><br><br>Procedure Nhap;<br>&nbsp; &nbsp;var i:Integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp; &nbsp;write('Nhap so phan tu cua day: '); readln(n);<br>&nbsp; &nbsp; &nbsp;writeln('Nhap day: ');<br>&nbsp; &nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write('A[',i,']='); readln(A[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;end;<br><br><br><br>Procedure Xuli;<br>&nbsp; &nbsp;var i,tong:Integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; tong:=0;<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; if nt(A[i]) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write(A[i],' ');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tong:=tong+A[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; writeln;<br>&nbsp; &nbsp; &nbsp; writeln;<br>&nbsp; &nbsp; &nbsp; writeln(tong);<br>&nbsp; &nbsp; &nbsp; readln;<br>&nbsp; &nbsp;end;<br><br>Begin<br>&nbsp; Nhap;<br>&nbsp; Xuli;<br>End.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/b7dec63bb5c1b19b30483863d371ac85/Bai1.pas" />
         <pubDate>2022-01-21 08:34:16 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004604983</guid>
      </item>
      <item>
         <title>Bài tập 2</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004634772</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/fc670e6e40142bb68c370c825cf77b63/BDTin8.docx" />
         <pubDate>2022-01-21 08:56:40 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004634772</guid>
      </item>
      <item>
         <title>Lời giải Bài 2 - thầy Đạt</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004660612</link>
         <description><![CDATA[<div>{Bai 2}<br>Program Bai2;<br>Uses crt;<br>var s:string; n,i,k,max, tong:Longint;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('Nhap so nguyen: '); readln(s);<br><br>&nbsp; &nbsp;{a. Dem so chu so cua so nguyen}<br>&nbsp; &nbsp;writeln('a. So chu so cua so nguyen la: ', length(s));<br><br>&nbsp; &nbsp;{b. Tinh tong cac chu so cua n}<br>&nbsp; &nbsp;tong:=0;<br>&nbsp; &nbsp;for i:=1 to length(s) do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp;val(s[i],k);<br>&nbsp; &nbsp; &nbsp; &nbsp;tong:=tong+k;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;Writeln('b. Tong cua cac chu so la: ',tong);<br><br>&nbsp; &nbsp;{c. Tim so lon nhat }<br>&nbsp; &nbsp;val(s[1],max);<br>&nbsp; &nbsp;for i:=2 to length(s) do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp;val(s[i],k);<br>&nbsp; &nbsp; &nbsp; &nbsp;if k&gt;max then max:=k;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;writeln('c. So lon nhat la: ', max);<br><br><br>&nbsp; &nbsp;Readln;<br>End.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/801a774770e92f382c47fc6330fdb15b/bai2.pas" />
         <pubDate>2022-01-21 09:15:44 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004660612</guid>
      </item>
      <item>
         <title>Câu hỏi</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004948232</link>
         <description><![CDATA[<div>thầy ơi cho em hỏi lại val dùng để làm gì vậy thầy<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-21 12:59:27 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2004948232</guid>
      </item>
      <item>
         <title>ĐỀ của thầy sỉ đề 1 Bài 1(ĐInh Quốc Ý)</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2005208863</link>
         <description><![CDATA[<div>{Viet chuong trinh cho phep nhap vao 1 phan so va rut gon phan so do}<br>program&nbsp; Bai1;<br>uses &nbsp; crt;<br>var&nbsp; &nbsp; m,n,a,b,k,t:real;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;writeln('Nhap phan so: ');<br>&nbsp; &nbsp;readln(m); a:=m;<br>&nbsp; &nbsp;writeln('-');<br>&nbsp; &nbsp;readln(n); b:=n;<br>&nbsp; &nbsp;while n&lt;&gt;m do<br>&nbsp; &nbsp; if m &lt; n then<br>&nbsp; &nbsp; &nbsp;n:=n-m else<br>&nbsp; &nbsp; &nbsp;m:=m-n;<br>&nbsp; &nbsp;writeln('Phan so rut gon la: ');<br>&nbsp; &nbsp;k:=a/m;<br>&nbsp; &nbsp;t:=b/m;<br>&nbsp; &nbsp;writeln(k:1:0);<br>&nbsp; &nbsp;writeln('-');<br>&nbsp; &nbsp;writeln(t:1:0);<br>&nbsp; &nbsp;readln;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-21 15:14:31 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2005208863</guid>
      </item>
      <item>
         <title>{Bài 1.	Viết chương trình nhập vào họ tên. In ra màn hình tên của người đó.}</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2006208308</link>
         <description><![CDATA[<div>{Bài 1.	Viết chương trình nhập vào họ tên. In ra màn hình tên của người đó.}<br><br>uses&nbsp; crt;<br>var &nbsp; st,stt:string;<br>&nbsp; &nbsp; &nbsp; i:integer;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;stt:='';<br>&nbsp; &nbsp;write('Nhap ho va ten: '); readln(st);<br>&nbsp; &nbsp;for i:= length(st) downto 1 do<br>&nbsp; &nbsp; &nbsp;if st[i] In[' '] then break;<br>&nbsp; &nbsp;writeln;<br>&nbsp; &nbsp;writeln('Ten la: ');<br>&nbsp; &nbsp;writeln;<br>&nbsp; &nbsp;for i:=i+1 to length(st) do<br>&nbsp; &nbsp; &nbsp;stt:=stt+st[i];<br>&nbsp; &nbsp;Textcolor(i);<br>&nbsp; &nbsp; &nbsp;write(stt);<br>readln;<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-01-22 09:12:18 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2006208308</guid>
      </item>
      <item>
         <title>ĐỀ THẦY ĐẠT BÀI TẬP HAI(TUẤN)</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2032545805</link>
         <description><![CDATA[<div>uses crt;</div><div>var n,d,i,t,max,x:longint;</div><div>y:integer;</div><div>st:string;</div><div>begin</div><div>clrscr;</div><div>repeat</div><div>write('Nhap n='); readln(n);</div><div>until n&gt;0;</div><div>str(n,st);</div><div>d:=length(st);</div><div>writeln('So chu so cua ',n,' la: ',d);</div><div>t:=0;</div><div>max:=0;</div><div>for i:=1 to d do&nbsp;</div><div>&nbsp; begin</div><div>val(st[i],x,y);</div><div>t:=t+x;</div><div>if max&lt;x then max:=x;</div><div>end;</div><div>writeln('Tong cac chu so cua ',n,' la: ',t);</div><div>writeln('Chu so lon nhat cua ',n,' la: ',max);</div><div>readln;</div><div>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-02-07 08:25:57 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2032545805</guid>
      </item>
      <item>
         <title>Ngày 11/2/2022 - Đề thi - Thầy Đạt</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2041874411</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/5dd27d9fa0e0f63a405c3f4740fc5962/De_de_nghi_mon_Tin_hoc_8_NH_2018_2019___THCS__My_Thanh_doc.pdf" />
         <pubDate>2022-02-11 07:16:39 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2041874411</guid>
      </item>
      <item>
         <title>Hướng dẫn bài Phân số </title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2041996402</link>
         <description><![CDATA[<div>program Phanso;<br>uses crt;<br>var a,b,c,d:Longint;<br><br>function UCLN(x,y:Longint):Longint;<br>&nbsp;begin<br>&nbsp; &nbsp; x:=abs(x);<br>&nbsp; &nbsp; y:=abs(y);<br>&nbsp; &nbsp; while x&lt;&gt;y do<br>&nbsp; &nbsp; &nbsp; if x&gt;y then x:=x-y<br>&nbsp; &nbsp; &nbsp; else y:=y-x;<br>&nbsp; &nbsp; UCLN:=x;<br>&nbsp;end;<br><br><br><br><br><br><br>begin<br>&nbsp; &nbsp;writeln('Phan so thu nhat: ');<br>&nbsp; &nbsp;write('Tu: '); readln(a);<br>&nbsp; &nbsp;repeat<br>&nbsp; &nbsp; &nbsp;write('Mau: '); readln(b);<br>&nbsp; &nbsp; &nbsp;if b=0 then writeln('Du lieu nhap vao khong dung. Nhap lai!!!"');<br>&nbsp; &nbsp;until b&lt;&gt;0;<br>&nbsp; &nbsp;writeln('Phan so thu hai: ');<br>&nbsp; &nbsp;write('Tu: '); readln(c);<br>&nbsp; &nbsp;repeat<br>&nbsp; &nbsp; &nbsp;write('Mau: '); readln(d);<br>&nbsp; &nbsp; &nbsp;if d=0 then writeln('Du lieu nhap vao khong dung. Nhap lai!!!"');<br>&nbsp; &nbsp;until d&lt;&gt;0;<br><br><br>&nbsp; &nbsp;writeln('Phan so da nhap: ', a div UCLN(a,b),'/',b div UCLN(a,b),'; ',c div UCLN(c,d),'/', d div UCLN(c,d));<br><br><br>&nbsp; &nbsp;readln;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-02-11 08:53:12 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2041996402</guid>
      </item>
      <item>
         <title>Phân số - Hoàn chỉnh</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2042040901</link>
         <description><![CDATA[<div>program Phanso;<br>uses crt;<br>var a,b,c,d,uc,bc:Longint;<br><br>function UCLN(x,y:Longint):Longint;<br>&nbsp;begin<br>&nbsp; &nbsp; x:=abs(x);<br>&nbsp; &nbsp; y:=abs(y);<br>&nbsp; &nbsp; while x&lt;&gt;y do<br>&nbsp; &nbsp; &nbsp; if x&gt;y then x:=x-y<br>&nbsp; &nbsp; &nbsp; else y:=y-x;<br>&nbsp; &nbsp; UCLN:=x;<br>&nbsp;end;<br><br>function BCNN(x,y:Longint):Longint;<br>&nbsp;begin<br>&nbsp; &nbsp; BCNN:=x*y div UCLN(x,y);<br>&nbsp;end;<br><br><br><br><br>begin<br>&nbsp; &nbsp;writeln('Phan so thu nhat: ');<br>&nbsp; &nbsp;write('Tu: '); readln(a);<br>&nbsp; &nbsp;repeat<br>&nbsp; &nbsp; &nbsp;write('Mau: '); readln(b);<br>&nbsp; &nbsp; &nbsp;if b=0 then writeln('Du lieu nhap vao khong dung. Nhap lai!!!"');<br>&nbsp; &nbsp;until b&lt;&gt;0;<br>&nbsp; &nbsp;writeln('Phan so thu hai: ');<br>&nbsp; &nbsp;write('Tu: '); readln(c);<br>&nbsp; &nbsp;repeat<br>&nbsp; &nbsp; &nbsp;write('Mau: '); readln(d);<br>&nbsp; &nbsp; &nbsp;if d=0 then writeln('Du lieu nhap vao khong dung. Nhap lai!!!"');<br>&nbsp; &nbsp;until d&lt;&gt;0;<br><br>&nbsp; &nbsp;uc:=UCLN(a,b);<br>&nbsp; &nbsp;a:= a div uc;<br>&nbsp; &nbsp;b:=b div uc;<br><br>&nbsp; &nbsp;uc:=UCLN(c,d);<br>&nbsp; &nbsp;c:=c div uc;<br>&nbsp; &nbsp;d:=d div uc;<br><br>&nbsp; &nbsp;writeln('Phan so da nhap: ', a,'/',b ,'; ',c ,'/', d );<br><br>&nbsp; &nbsp;bc:=bcnn(b,d);<br>&nbsp; &nbsp;a:=(bc div b) * a;<br>&nbsp; &nbsp;c:=(bc div d) * c;<br>&nbsp; &nbsp;b:=bc;<br>&nbsp; &nbsp;d:=bc;<br><br>&nbsp; &nbsp;writeln('Phan so sau khi quy dong: ', a,'/',b,'; ',c,'/',d);<br><br><br>&nbsp; &nbsp;a:=a+c;<br>&nbsp; &nbsp;uc:=UCLN(a,b);<br>&nbsp; &nbsp;a:= a div uc;<br>&nbsp; &nbsp;b:= b div uc;<br><br>&nbsp; &nbsp;writeln('Tong cua hai phan so: ',a,'/',b);<br><br>&nbsp; &nbsp;readln;<br>end.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/bc3f5d96cc73c5361b1b9692c21b57fb/BaiPhanSo.bak" />
         <pubDate>2022-02-11 09:26:46 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2042040901</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2043581143</link>
         <description><![CDATA[<div>program UCLN_Mang;<br>uses crt;<br>var M:Array[1..100] of Integer;<br>&nbsp; &nbsp; i,n,j,MIN:Integer;<br>&nbsp; &nbsp; kt:Boolean;<br>begin<br>&nbsp; &nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp; &nbsp;write('nhap so phan tu:');readln(n);<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; write('M[',i,']=');<br>&nbsp; &nbsp; &nbsp; &nbsp; readln(M[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp;MIN:=M[1];<br>&nbsp; &nbsp; &nbsp;for i:=2 to n do<br>&nbsp; &nbsp; &nbsp; if M[i]&lt;MIN then MIN:=M[i];<br>&nbsp; &nbsp; &nbsp;for i:=MIN downto 1 do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp;kt:=true;<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if M[j] mod i &lt;&gt;0 then kt:=false;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if kt=true then break;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; write('UCLN la:',i);<br>&nbsp; readln;<br>end.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546967545/8d04921a4a858d980c741f7b2ada818c/UCLN_Mang.bak" />
         <pubDate>2022-02-12 10:06:12 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2043581143</guid>
      </item>
      <item>
         <title>BCNN XÓA MÃN</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2043595791</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1578988190/bf599df69454452d2daf08efea322d30/XOAMANGBCNN.pas" />
         <pubDate>2022-02-12 10:33:34 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2043595791</guid>
      </item>
      <item>
         <title>Ngày 18/02/2022 - thầy Đạt - Đề HSG Tin 8 tham khảo</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2054760268</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/f7806f85407f1f1b4943da3c94e82c73/De_thi_HSG_Tin_8_nam_hoc_0910_Que_Son.doc" />
         <pubDate>2022-02-18 07:07:42 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2054760268</guid>
      </item>
      <item>
         <title>bài 1 mới phiá bên  &lt;---</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2054819685</link>
         <description><![CDATA[<div>uses crt;<br>var i,a,b,c:integer;<br>begin<br>&nbsp;clrscr;<br>&nbsp;writeln('Nhap ba canh cua tam giac');<br>&nbsp; write('nhap canh a:');readln(a);<br>&nbsp; write('nhap canh b:');readln(b);<br>&nbsp; write('nhap canh c:');readln(c);<br>&nbsp; &nbsp;if (a+b&lt;c) or (a+c&lt;b) or (b+c&lt;a) then<br>&nbsp; &nbsp;write('khong phai ba canh cua mot tam giac')<br><br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; {tam giac deu}<br>&nbsp; &nbsp; &nbsp;if (a=b) and (b=c) then<br>&nbsp; &nbsp; &nbsp;write('abc la tam giac deu')<br><br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; {tam giac vuong can}<br>&nbsp; &nbsp; &nbsp;if (a=b) or (b=c) or (a=c) then<br>&nbsp; &nbsp; &nbsp; if (a*a=b*b+c*c) or (b*b=c*c+a*a) or (c*c=a*a+b*b) then<br>&nbsp; &nbsp; &nbsp; write('abc la tam giac vong can')<br>&nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp;write('la tam giac can')<br><br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; {tam giac vuong}<br>&nbsp; &nbsp; &nbsp;if (a*a=b*b+c*c) or (b*b=c*c+a*a) or (c*c=a*a+b*b) then<br>&nbsp; &nbsp; &nbsp; write('abc la tam giac vong ')<br><br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; {tam giac thuong}<br>&nbsp; &nbsp; &nbsp;writeln('tam giac thuong');<br>&nbsp; &nbsp; &nbsp;readln;<br>end.<br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1578988190/e9e2a07adbcf8b5f133583497ed9fd8c/kiemtrabatamgiac.exe" />
         <pubDate>2022-02-18 07:57:30 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2054819685</guid>
      </item>
      <item>
         <title>bài 2 mới phía bên &lt;---</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2054922550</link>
         <description><![CDATA[<div>uses crt;<br>var n,i,s:integer;<br>begin<br>&nbsp;clrscr;<br>&nbsp;write('nhap so n:');readln(n);<br>&nbsp;s:=0;<br><br>&nbsp; for i:=1 to n-1 do<br>&nbsp; &nbsp;if n mod i=0 then<br>&nbsp; &nbsp; s:=s+i;<br>&nbsp; &nbsp;if s=n then<br><br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;write(n,' la so hoan chinh vi: ', n,'=');<br>&nbsp; &nbsp; &nbsp; &nbsp;write(1);<br>&nbsp; &nbsp; &nbsp; &nbsp;for i:=2 to n-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp;if n mod i = 0 then write('+',i);<br><br>&nbsp; &nbsp; end<br><br>&nbsp; &nbsp;else<br>&nbsp; &nbsp; writeln(n,':khong phai la so hoan chinh');<br>&nbsp;readln<br>end.<br>uses crt;<br>var n,i,s:integer;<br>begin<br>&nbsp;clrscr;<br>&nbsp;write('nhap so n:');readln(n);<br>&nbsp;s:=0;<br><br>&nbsp; for i:=1 to n-1 do<br>&nbsp; &nbsp;if n mod i=0 then<br>&nbsp; &nbsp; s:=s+i;<br>&nbsp; &nbsp;if s=n then<br><br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;write(n,' la so hoan chinh vi: ', n,'=');<br>&nbsp; &nbsp; &nbsp; &nbsp;write(1);<br>&nbsp; &nbsp; &nbsp; &nbsp;for i:=2 to n-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp;if n mod i = 0 then write('+',i);<br><br>&nbsp; &nbsp; end<br><br>&nbsp; &nbsp;else<br>&nbsp; &nbsp; writeln(n,':khong phai la so hoan chinh');<br>&nbsp;readln<br>end.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1578988190/598a3295592336685c6cb42c9ebcc7eb/sohoanchinh.exe" />
         <pubDate>2022-02-18 09:19:54 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2054922550</guid>
      </item>
      <item>
         <title>bài tập 4</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2063634133</link>
         <description><![CDATA[<div>uses crt;</div><div>var&nbsp; &nbsp; &nbsp;j, d,dem,n,k,i:integer;</div><div>A:array[1..100] of integer;</div><div>&nbsp;begin</div><div>&nbsp; clrscr;</div><div>&nbsp; write('nhap so phan tu: ');readln(n);</div><div>&nbsp; &nbsp;for i:=1 to n do</div><div>&nbsp; &nbsp; begin</div><div>&nbsp; &nbsp; &nbsp;write('A[',i,']=');</div><div>&nbsp; &nbsp; &nbsp;readln(a[i]);</div><div>&nbsp; &nbsp; end;</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp;</div><div>writeln('cac so duong trong day la: ');</div><div>&nbsp; for i:=1 to n do</div><div>&nbsp; &nbsp;if a[i] &gt; 0 then</div><div>&nbsp; &nbsp;writeln(a[i]:5)</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; &nbsp;write('khong co so nguyen duong trong day');</div><div>&nbsp;</div><div>&nbsp;</div><div>writeln('nhap k: ');readln(k);</div><div>&nbsp; for i:=1 to n do</div><div>&nbsp; &nbsp;if a[i]=k then</div><div>&nbsp; &nbsp; writeln(i:5);</div><div>&nbsp;</div><div>&nbsp;</div><div>&nbsp; for i:=1 to n do</div><div>&nbsp; &nbsp;begin</div><div>&nbsp; &nbsp; d:=0;</div><div>&nbsp; &nbsp; for j:=1 to a[i] do</div><div>&nbsp; &nbsp; &nbsp;if a[i] mod j=0 then</div><div>&nbsp; &nbsp; &nbsp; d:=d+1;</div><div>&nbsp; &nbsp; &nbsp;if d=2 then</div><div>&nbsp; &nbsp; &nbsp; dem:=dem+1;</div><div>&nbsp; &nbsp;end;</div><div>write('so luong phan tu la nguyen to trong mang la:',dem);</div><div>&nbsp;</div><div>readln</div><div>end.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1593776655/aefef57c8b677b54ab54620c4b678113/demsonguyenduong.exe" />
         <pubDate>2022-02-24 01:01:59 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2063634133</guid>
      </item>
      <item>
         <title>bangnhan tệp</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2065980750</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1578988190/cc4cee3338b56f05cba3138753b9e408/bannhan.out" />
         <pubDate>2022-02-25 07:44:29 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2065980750</guid>
      </item>
      <item>
         <title>vd 2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2066072490</link>
         <description><![CDATA[<div>const &nbsp; fi='nto.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; fo='nto.out';<br>var&nbsp; &nbsp; &nbsp;n:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; f,g:text;<br><br>function nto(a:longint):boolean;<br>&nbsp; &nbsp;var&nbsp; &nbsp; &nbsp; i,t:longint;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp;if a&lt;2 then exit(false);<br>&nbsp; &nbsp;if (a=2) or(a=3) then exit(true);<br>&nbsp; &nbsp;t:=trunc(sqrt(a));<br>&nbsp; &nbsp;for i:=2 to t do<br>&nbsp; &nbsp; &nbsp;if a mod i = 0 then exit(false);<br>&nbsp; &nbsp;exit(true);<br>&nbsp; &nbsp;end;<br><br><br>begin<br>&nbsp; assign(f,fi); assign(g,fo);<br>&nbsp; reset(f);<br>&nbsp; rewrite(g);<br>&nbsp; readln(f,n);<br><br>&nbsp; if nto(n) then write(g,'1')<br>&nbsp; else write(g,0);<br><br>&nbsp; close(g);<br>&nbsp; close(f);<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-02-25 09:08:39 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2066072490</guid>
      </item>
      <item>
         <title>vd3</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2066121175</link>
         <description><![CDATA[<div>const fi='Mang.inp';<br>&nbsp; &nbsp; &nbsp; fo='Mang.outp';<br>var &nbsp; f,g:text;<br>&nbsp; &nbsp; &nbsp; a:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; i,j,n,tam:longint;<br>begin<br>&nbsp; &nbsp;assign(f,fi); assign(g,fo);<br>&nbsp; &nbsp;reset(f); rewrite(g);<br>&nbsp; &nbsp;readln(f,n);<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp;read(f,a[i]);<br>&nbsp; &nbsp;for i:=1 to n-1 do<br>&nbsp; &nbsp; &nbsp; for j:=i+1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if a[j] &lt;a[i] then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tam:= a[j];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[j]:= a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[i]:=tam;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;for i:=1 to n do write(g,a[i],' ');<br>&nbsp; &nbsp;writeln(g);<br>&nbsp; &nbsp;write(g,a[n]);<br>&nbsp; &nbsp;close(f); close(g);<br>end.<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-02-25 09:54:35 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2066121175</guid>
      </item>
      <item>
         <title>ĐỀ THI TIN 8</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2074668824</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546966465/bf16ca534621935fcbd42b38372f39c3/De_de_nghi_mon_Tin_hoc_8_NH_2018_2019___THCS_My_Thanh.doc" />
         <pubDate>2022-03-03 00:52:11 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2074668824</guid>
      </item>
      <item>
         <title>Palindrom</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2074737668</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546966465/81b200bce08a12e81d183d9cca7cecc5/Palindrom.pas" />
         <pubDate>2022-03-03 01:25:14 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2074737668</guid>
      </item>
      <item>
         <title>Bài 2 Đề thi tin 8</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2074761343</link>
         <description><![CDATA[<div>uses&nbsp; &nbsp; crt;<br>var&nbsp; &nbsp; &nbsp;a:array[1..100] of string;<br>&nbsp; &nbsp; &nbsp; &nbsp; i,n:integer;<br><br>function&nbsp; palin(st:string):boolean;<br>var&nbsp; &nbsp; &nbsp;stt:string;<br>&nbsp; &nbsp; &nbsp; &nbsp; i:integer;<br>begin<br>&nbsp; &nbsp; &nbsp; &nbsp; stt:='';<br>&nbsp; &nbsp; for i:=length(st) downto 1 do<br>&nbsp; &nbsp; &nbsp; &nbsp;stt:=stt+st[i];<br>&nbsp; &nbsp; if st = stt then palin := true else palin:=false;<br>end;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('Nhap n: '); readln(n);<br>&nbsp; &nbsp; while ( n&lt;5) or(n &gt;20) do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; writeln ('Yeu cau 5&lt;=n&lt;=20');<br>&nbsp; &nbsp; &nbsp; write('Nhap lai n: ');<br>&nbsp; &nbsp; &nbsp; readln(n);<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; write('A[',i,']=');<br>&nbsp; &nbsp; &nbsp; readln(A[i]);<br>&nbsp; &nbsp; &nbsp; while (length(a[i]) &gt; 4) or (length(a[i]) &lt;2) do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeln('Yeu cau cac phan tu phai co 2 den 4 chu so . Yeu cau nhap lai: ');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write('A[',i,']=');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; readln(a[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; if palin(A[i])=true then write(a[i],' ');<br>&nbsp; &nbsp;readln;<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-03 01:38:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2074761343</guid>
      </item>
      <item>
         <title>MẢNG 2 CHIỀU BÀI 1</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099144118</link>
         <description><![CDATA[<div>program B1Mang2Chieu;<br>uses crt;<br>var A:array[1..100, 1..100] of Integer;<br>&nbsp; &nbsp; m,n,i,j:integer;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;writeln('CHUONG TRINH NHAP MANG 2 CHIEU M DONG N COT');<br>&nbsp; &nbsp;writeln('===========================================');<br>&nbsp; &nbsp;write('Nhap so dong m ='); readln(m);<br>&nbsp; &nbsp;write('Nhap so cot n = '); readln(n);<br>&nbsp; &nbsp;writeln('NHAP CAC PHAN TU CUA MANG: ');<br>&nbsp; &nbsp;for i:=1 to m do<br>&nbsp; &nbsp; &nbsp;for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp;write('A[',i,',',j,']=');<br>&nbsp; &nbsp; &nbsp; &nbsp;readln(A[i,j]);<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;writeln('MANG 2 CHIEU ',m, ' DONG ',n, ' COT VUA NHAP LA: ');<br>&nbsp; &nbsp;for i:=1 to m do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp;for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;write(A[i,j]:5);<br>&nbsp; &nbsp; &nbsp; &nbsp;writeln;<br>&nbsp; &nbsp; &nbsp; &nbsp;writeln;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;readln;<br>end.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/0fd6fd1a6cef1ddc341ccfb45a86876b/B1Mang2Chieu.pas" />
         <pubDate>2022-03-17 02:05:00 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099144118</guid>
      </item>
      <item>
         <title>MẢNG 2 CHIỀU BÀI 2</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099144834</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/ea7420fb0c7084bd6139133d224dfabf/B2Mang2Chieu.pas" />
         <pubDate>2022-03-17 02:05:32 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099144834</guid>
      </item>
      <item>
         <title>MẢNG 2 CHIỀU BÀI 3</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099145846</link>
         <description><![CDATA[<div>program B3Mang2Chieu;<br>uses crt;<br>const&nbsp; fi='B3M2C.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp;fo='B3M2C.out';<br>var &nbsp; m,n,i,j,k,tam:Longint;<br>&nbsp; &nbsp; &nbsp; A:array[1..100,1..100] of Integer;<br>&nbsp; &nbsp; &nbsp; f,g:text;<br>begin<br>&nbsp; &nbsp; clrscr;<br>&nbsp; &nbsp; //Lenh gan ten tep, mo tep<br>&nbsp; &nbsp; assign(f,fi); reset(f);<br>&nbsp; &nbsp; assign(g,fo); rewrite(g);<br>&nbsp; &nbsp; readln(f,m,n);<br>&nbsp; &nbsp; for i:=1 to m do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; read(f,A[i,j]);<br>&nbsp; &nbsp; &nbsp; readln(f);<br>&nbsp; &nbsp; &nbsp;end;<br><br>&nbsp; &nbsp; //Thuat toan sap xep tang dan<br>&nbsp; &nbsp; for k:=1 to m do<br>&nbsp; &nbsp; &nbsp;for i:=1 to n-1 do<br>&nbsp; &nbsp; &nbsp; for j:=i+1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; if A[k,j]&lt;A[k,i] then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tam:=A[k,i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; A[k,i]:=A[k,j];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; A[k,j]:=tam;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br><br><br><br><br>&nbsp; &nbsp; writeln(g,m, ' ', n);<br>&nbsp; &nbsp; for i:=1 to m do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write(g,A[i,j]:4);<br>&nbsp; &nbsp; &nbsp; &nbsp; writeln(g);<br>&nbsp; &nbsp; &nbsp; &nbsp; writeln(g);<br>&nbsp; &nbsp; &nbsp; end;<br><br>&nbsp; &nbsp; close(f); close(g);<br>&nbsp; &nbsp; readln;<br>End.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/3c65a953ac7aa40703d60946a263bc3d/B3M2Chieu.pas" />
         <pubDate>2022-03-17 02:06:13 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099145846</guid>
      </item>
      <item>
         <title>MẢNG 2 CHIỀU BÀI 2 - CÁC SỐ XUẤT 1 LẦN</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099232070</link>
         <description><![CDATA[<div>program B2Mang2Chieu;<br>uses crt;<br>var A:array[1..100, 1..100] of Integer;<br>&nbsp; &nbsp; m,n,i,j,k:integer;<br>&nbsp; &nbsp; B:array[1..10000] of Integer;<br>&nbsp; &nbsp; kt:Boolean;<br>function NT(a:longint):Boolean;<br>&nbsp; &nbsp;var i,t:Longint;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; if a&lt;2 then exit(false);<br>&nbsp; &nbsp; &nbsp; if (a=2) or (a=3) then exit(true);<br>&nbsp; &nbsp; &nbsp; t:=trunc(sqrt(a));<br>&nbsp; &nbsp; &nbsp; for i:=2 to t do<br>&nbsp; &nbsp; &nbsp; &nbsp; if a mod i = 0 then exit(false);<br>&nbsp; &nbsp; &nbsp; exit(true);<br>&nbsp; &nbsp;end;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;writeln('CHUONG TRINH NHAP MANG 2 CHIEU M DONG N COT');<br>&nbsp; &nbsp;writeln('===========================================');<br>&nbsp; &nbsp;write('Nhap so dong m ='); readln(m);<br>&nbsp; &nbsp;write('Nhap so cot n = '); readln(n);<br>&nbsp; &nbsp;writeln('NHAP CAC PHAN TU CUA MANG: ');<br>&nbsp; &nbsp;for i:=1 to m do<br>&nbsp; &nbsp; &nbsp;for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp;write('A[',i,',',j,']=');<br>&nbsp; &nbsp; &nbsp; &nbsp;readln(A[i,j]);<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;writeln('MANG 2 CHIEU ',m, ' DONG ',n, ' COT VUA NHAP LA: ');<br>&nbsp; &nbsp;for i:=1 to m do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp;for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;write(A[i,j]:5);<br>&nbsp; &nbsp; &nbsp; &nbsp;writeln;<br>&nbsp; &nbsp; &nbsp; &nbsp;writeln;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;writeln('CAC PHAN TU CUA MANG LA SO NGUYEN TO LA: ');<br>&nbsp; &nbsp;k:=0;<br>&nbsp; &nbsp;for i:=1 to m do<br>&nbsp; &nbsp; &nbsp;for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp;if nt(A[i,j]) then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;k:=k+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;B[k]:=A[i,j];<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;write(B[1],' ');<br>&nbsp; &nbsp;for i:=2 to k do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; kt:=true;<br>&nbsp; &nbsp; &nbsp; for j:=i-1 downto 1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; if B[i]=B[j] then kt:=false;<br>&nbsp; &nbsp; &nbsp; if kt then write(B[i],' ');<br>&nbsp; &nbsp; end;<br><br><br><br>&nbsp; &nbsp;readln;<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-17 03:04:38 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2099232070</guid>
      </item>
      <item>
         <title>ĐỀ THI HSG TIN 8 HUYỆN PHÙ MỸ 14 15</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110723857</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/53fcbba7f49b90a5ccb56a3287c16e85/IMG_1647740631290_1648079685845.jpg" />
         <pubDate>2022-03-24 00:07:17 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110723857</guid>
      </item>
      <item>
         <title>XÂU ĐẢO NGƯỢC</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110952883</link>
         <description><![CDATA[<div>{De thi hoc sinh gioi tin hoc 8 huyen Phu My<br>&nbsp; nam hoc 2014 2015<br>&nbsp; Bai 1}<br>program Xaudoixung;<br>uses crt;<br>var s,x:string; i,d:integer;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('- Nhap xau: '); readln(s);<br>&nbsp; &nbsp;write('- x='); readln(x);<br>&nbsp; &nbsp;d:=0;<br>&nbsp; &nbsp;for i:=1 to length(s) do<br>&nbsp; &nbsp; &nbsp;if s[i]=x then inc(d);<br>&nbsp; &nbsp;writeln('- So lan xuat hien cua ',x,' la: ',d);<br>&nbsp; &nbsp;x:='';<br>&nbsp; &nbsp;for i:=length(s) downto 1 do<br>&nbsp; &nbsp; &nbsp;x:=x+s[i];<br>&nbsp; &nbsp;if s=x then writeln('- Xau da nhap doi xung.')<br>&nbsp; &nbsp;else writeln('- Xau da nhap khong doi xung.');<br>&nbsp; &nbsp;writeln('- Xau dao nguoc: ',x);<br>&nbsp; &nbsp;readln;<br>end.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/6ce030166b7d8ef3b07465aed78192b9/Bai1.pas" />
         <pubDate>2022-03-24 02:32:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110952883</guid>
      </item>
      <item>
         <title>SỐ LỚN NHẤT</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110953661</link>
         <description><![CDATA[<div>{De thi hoc sinh gioi tin hoc 8 huyen Phu My<br>&nbsp; nam hoc 2014 2015<br>&nbsp; Bai 2}<br>program Timsolonnhat;<br>uses crt;<br>var s,x,kq,max:string; i,d:integer;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('- Nhap xau: '); readln(s);<br>&nbsp; &nbsp;x:='';<br>&nbsp; &nbsp;for i:=1 to length(s) do<br>&nbsp; &nbsp; &nbsp;if s[i] in ['1'..'9'] then x:=x+s[i];<br>&nbsp; &nbsp;kq:='';<br>&nbsp; &nbsp;max:='0';<br>&nbsp; &nbsp;for i:=1 to length(x)-3 do<br>&nbsp; &nbsp; if x[i]&gt;max then<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp;max:=x[i];<br>&nbsp; &nbsp; &nbsp; &nbsp;d:=i;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;kq:=max;<br><br>&nbsp; &nbsp;max:='0';<br>&nbsp; &nbsp;for i:=d+1 to length(x)-2 do<br>&nbsp; &nbsp; &nbsp;if x[i]&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:=x[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;d:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;kq:=kq+max;<br><br>&nbsp; &nbsp;max:='0';<br>&nbsp; &nbsp;for i:=d+1 to length(x)-1 do<br>&nbsp; &nbsp; &nbsp;if x[i]&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:=x[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;d:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;kq:=kq+max;<br><br>&nbsp; &nbsp;max:='0';<br>&nbsp; &nbsp;for i:=d+1 to length(x) do<br>&nbsp; &nbsp; &nbsp;if x[i]&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:=x[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;d:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;kq:=kq+max;<br>&nbsp; &nbsp;writeln(kq);<br>&nbsp; &nbsp;readln;<br>end.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/24475121e71741ba2aebe73bb52bfd5b/Bai2.pas" />
         <pubDate>2022-03-24 02:32:54 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110953661</guid>
      </item>
      <item>
         <title>SỐ HOÀN HẢO</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110954304</link>
         <description><![CDATA[<div>{De thi hoc sinh gioi tin hoc 8 huyen Phu My<br>&nbsp; nam hoc 2014 2015<br>&nbsp; Bai 3}<br>program Timsohoanhao;<br>uses crt;<br>var i,j,n,tu,k:Longint;<br>&nbsp; &nbsp; s,x:string;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('Nhap N='); readln(n);<br><br>&nbsp; &nbsp;for i:=2 to n do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; tu:=0;<br>&nbsp; &nbsp; &nbsp; str(i,x);<br><br>&nbsp; &nbsp; &nbsp; s:=x+'=';<br><br>&nbsp; &nbsp; &nbsp; k:=i div 2 +1;<br><br><br>&nbsp; &nbsp; &nbsp; for j:=1 to k do<br>&nbsp; &nbsp; &nbsp; &nbsp;if i mod j=0 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tu:=tu+j;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;str(j,x);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;s:=s+x+'+';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; delete(s,length(s),1);<br>&nbsp; &nbsp; &nbsp; if tu=i then<br>&nbsp; &nbsp; &nbsp; &nbsp; writeln(s);<br><br><br><br>&nbsp; &nbsp; { Chay lau hon<br>&nbsp; &nbsp; &nbsp; if tu=i then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;write(i,'=1');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for j:=2 to k do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if i mod j=0 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write('+',j);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;writeln;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp;}<br>&nbsp; &nbsp; end;<br><br>&nbsp; &nbsp;readln;<br>end.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/c0c79c8eff316a91e8c1cda049322d9c/Bai3.pas" />
         <pubDate>2022-03-24 02:33:22 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2110954304</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2151351769</link>
         <description><![CDATA[<div>Uses &nbsp; crt;<br>var&nbsp; &nbsp; a:array [1..100] of integer;<br>&nbsp; &nbsp; &nbsp; &nbsp;n,i,max,j,c:integer;<br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('Nhap so luong phan tu : '); readln(n);<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; write('A[',i,']=');<br>&nbsp; &nbsp; &nbsp; &nbsp; readln(a[i]);<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; if a[i]&gt; 0 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:=i to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[i]:=a[i+1];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c:=n-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;max:=a[1];<br>&nbsp; &nbsp;for i:=1 to c do<br>&nbsp; &nbsp; &nbsp;if max &lt; a[i] then max:=a[i];<br>&nbsp; &nbsp;write(max);<br>&nbsp; &nbsp;readln<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-21 02:54:20 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2151351769</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2151352213</link>
         <description><![CDATA[<div>uses&nbsp; &nbsp; crt;<br>var&nbsp; &nbsp; &nbsp;n,i,j,d,t:longint;<br>Begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('Nhap so : '); readln(n);<br>&nbsp; &nbsp;d:=0;<br>&nbsp; &nbsp;j:=1;<br>&nbsp; &nbsp;for i:=2 to 100000 do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;repeat<br>&nbsp; &nbsp; &nbsp; &nbsp;j:=j+1;<br>&nbsp; &nbsp; &nbsp;until&nbsp; i mod j =0;<br>&nbsp; &nbsp;if j= n then d:=d+1;<br>&nbsp; &nbsp; &nbsp; &nbsp;j:=1;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp; writeln(d);<br>&nbsp; &nbsp;readln<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-04-21 02:54:44 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2151352213</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2184194081</link>
         <description><![CDATA[<div>Program&nbsp; &nbsp; Bai5;<br>Const&nbsp; &nbsp; &nbsp; fi='DAYCON.INP';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fo='DAYCON.OUt';<br>Var&nbsp; &nbsp; &nbsp; &nbsp; tong,dem1,dem2,n,i,t:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;f,g:text;<br>Begin<br>&nbsp; &nbsp; &nbsp;Assign(f,fi);&nbsp; &nbsp; Assign(g,fo);<br>&nbsp; &nbsp; &nbsp;Reset(f);&nbsp; &nbsp; Rewrite(g);<br>&nbsp; &nbsp; &nbsp;Readln(f,n,t); &nbsp; Readln(f);<br>&nbsp; &nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; Read(f,a[i]);<br>&nbsp; &nbsp; &nbsp;i:=1;&nbsp; dem1:=0; &nbsp; dem2:=0;&nbsp; tong:=0;<br>&nbsp; &nbsp; &nbsp;While i&lt;= n do<br>&nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(dem1);<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=tong+a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If tong = t then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(dem2);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dem1:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (tong &gt; t) and (A[i+1]&gt;0) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i:=i-dem1+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dem1:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(i);<br>&nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp;Write(g,dem2);<br>&nbsp; &nbsp; &nbsp;Close(f); &nbsp; Close(g);<br>End.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-05-15 02:23:50 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2184194081</guid>
      </item>
      <item>
         <title>bai3</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2184951808</link>
         <description><![CDATA[<div>uses crt;<br>const&nbsp; fi='dayso.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp;fo='dayso.out';<br>var&nbsp; i,j,tam,n,tong:integer;<br>&nbsp; &nbsp; &nbsp;a:array[1..100] of integer;<br>&nbsp; &nbsp; &nbsp;f,g:text;<br>&nbsp; &nbsp; &nbsp;dem:integer;<br>begin<br>&nbsp;assign(f,fi);assign(g,fo);<br>&nbsp;reset(f);rewrite(g);<br><br>&nbsp;readln(f,n);<br>&nbsp;readln(f);<br>&nbsp;tong:=0; &nbsp; i:=1; &nbsp; dem:=1;<br><br>&nbsp;for i:=1 to n do<br>&nbsp; read(f,a[i]);<br>&nbsp;for i:=1 to n do<br>&nbsp; &nbsp;tong:=tong+a[i];<br>write(g,tong);&nbsp; writeln(g);<br><br><br><br><br><br>&nbsp; &nbsp; for i:=1 to n-1 do<br>&nbsp; &nbsp; &nbsp;for j:=i+1 to n do<br>&nbsp; &nbsp; &nbsp;if a[i]&gt;a[j] then<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp;tam:=a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp;a[i]:=a[j];<br>&nbsp; &nbsp; &nbsp; &nbsp;a[j]:=tam;<br>&nbsp; &nbsp; &nbsp; end;<br>i:=1;<br>&nbsp;while i&lt;= n do<br>&nbsp; begin<br>&nbsp; &nbsp;dem:=1;<br>&nbsp; &nbsp;while a[i]=a[i+1] do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;inc(dem);<br>&nbsp; &nbsp; &nbsp;inc(i);<br>&nbsp; &nbsp; end;<br>&nbsp;writeln(g,a[i],':',dem);<br>inc(i);<br>&nbsp; end;<br>close(f);<br>close(g);<br>end.<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-05-16 01:36:20 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2184951808</guid>
      </item>
      <item>
         <title>SOS (nhập ngày tháng năm in ra thứ)</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2185630825</link>
         <description><![CDATA[<div>Program Thu_trong_tuan;<br>Uses Crt;<br>Var<br>&nbsp; &nbsp;thu,ngay,thang:Byte;<br>&nbsp; &nbsp;Nam,luu:Integer;<br>Begin<br>&nbsp; &nbsp;Clrscr;<br>&nbsp; &nbsp;Writeln('NGAY THU MAY TRONG TUAN');<br>&nbsp; &nbsp;Writeln('-----------------------');<br>&nbsp; &nbsp;Write('-Ngay: ');<br>&nbsp; &nbsp;Readln(ngay);<br>&nbsp; &nbsp;Write('-Thang: ');<br>&nbsp; &nbsp;Readln(thang);<br>&nbsp; &nbsp;Write('-Nam: ');<br>&nbsp; &nbsp;Readln(nam);<br>&nbsp; &nbsp;luu:=nam;<br>&nbsp; &nbsp;nam:=1900 + (nam Mod 1900);<br>&nbsp; &nbsp;If thang &lt; 3 Then<br>&nbsp; &nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;thang:=thang + 12;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nam:=nam - 1;<br>&nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp;thu:=ABS(ngay+2*thang+3*(thang+1) Div 5+nam+nam Div 4) Mod 7;<br>&nbsp; &nbsp;Case thu Of<br>&nbsp; &nbsp; &nbsp; &nbsp;0&nbsp; &nbsp; : Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+Ngay:',ngay:3,',thang:',thang:3,',nam:',luu:5);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('&nbsp; &nbsp; &nbsp; &nbsp; +La ngay Chu Nhat');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp; 1&nbsp; &nbsp; :&nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+Ngay:',ngay:3,',thang:',thang:3,',nam:',luu:5);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+La ngay Thu Hai');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp; 2&nbsp; &nbsp; :&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+Ngay:',ngay:3,',thang:',thang:3,',nam:',luu:5);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Writeln('&nbsp; &nbsp; &nbsp; &nbsp; +La ngay Thu Ba');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp; 3&nbsp; &nbsp; :&nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+Ngay:',ngay:3,',thang:',thang:3,',nam:',luu:5);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('&nbsp; &nbsp; &nbsp; &nbsp; +La ngay Thu Tu');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp; 4&nbsp; &nbsp; :&nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+Ngay:',ngay:3,',thang:',thang:3,',nam:',luu:5);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('&nbsp; &nbsp; &nbsp; &nbsp; +La ngay Thu Nam');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp; 5&nbsp; &nbsp; :&nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+Ngay:',ngay:3,',thang:',thang:3,',nam:',luu:5);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('&nbsp; &nbsp; &nbsp; &nbsp; +La ngay Thu Sau');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp; 6&nbsp; &nbsp; :&nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('+Ngay:',ngay:3,',thang:',thang:3,',nam:',luu:5);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln('&nbsp; &nbsp; &nbsp; &nbsp; +La ngay Thu Bay');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp;End;<br>&nbsp; &nbsp;Writeln;<br>&nbsp; &nbsp;Writeln(' &nbsp; Bam phim &lt;Enter&gt; de ket thuc');<br>&nbsp; &nbsp;Readln;<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-05-16 12:42:05 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2185630825</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2186782652</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1700822440/7ad4bce4b2ae2b68a251c459b036481b/100_bai_tap_Turbo_Pascal.doc" />
         <pubDate>2022-05-17 02:41:15 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2186782652</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2188711850</link>
         <description><![CDATA[<div>Program&nbsp; &nbsp; Bai5;<br>Const&nbsp; &nbsp; &nbsp; fi='DAYCON.INP';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fo='DAYCON.OUT';<br>Var&nbsp; &nbsp; &nbsp; &nbsp; tong,dem1,dem2,n,i,t:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;f,g:text;<br>Begin<br>&nbsp; &nbsp; &nbsp;Assign(f,fi);&nbsp; &nbsp; Assign(g,fo);<br>&nbsp; &nbsp; &nbsp;Reset(f);&nbsp; &nbsp; Rewrite(g);<br>&nbsp; &nbsp; &nbsp;Readln(f,n,t); &nbsp; Readln(f);<br>&nbsp; &nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; Read(f,a[i]);<br>&nbsp; &nbsp; &nbsp;i:=1;&nbsp; dem1:=0; &nbsp; dem2:=0;&nbsp; tong:=0;<br>&nbsp; &nbsp; &nbsp;While i&lt;= n do<br>&nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If a[i]=t then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(dem2);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(i);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(dem1);<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=tong+a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If tong = t then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(dem2);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dem1:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (tong &gt; t) and (a[i+1] &gt;0) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i:=i-dem1+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dem1:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(i);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; &nbsp;Write(g,dem2);<br>&nbsp; &nbsp; &nbsp;Close(f); &nbsp; Close(g);<br>End.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-05-18 03:00:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2188711850</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2196913270</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1673033732/d6368794c3e03cb124181f51c2eedd2c/De_Tin_8_2021.jpg" />
         <pubDate>2022-05-24 03:14:31 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2196913270</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2196913675</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1673033732/957c39bd41bf1a81d99f4206454d576c/De_1__1_.docx" />
         <pubDate>2022-05-24 03:14:52 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2196913675</guid>
      </item>
      <item>
         <title>bài 5 hay sao á</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2216016169</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1697752358/ccbd0222d6d9d1e6c7550059b9c6d443/solonnhattrongxau.pas" />
         <pubDate>2022-06-09 08:09:33 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2216016169</guid>
      </item>
      <item>
         <title>các hàm nguyên tố</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2217943043</link>
         <description><![CDATA[<div>1://&nbsp; &nbsp;<br>function NTo(a:longint):boolean;<br>var&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i , t:integer;<br>&nbsp; begin&nbsp;<br>&nbsp; &nbsp; if (a&lt;2) then exit(false);<br>&nbsp; &nbsp; if (a=2) or (a=3) then&nbsp; exit(true);<br>&nbsp; &nbsp; &nbsp; &nbsp;t:=trunc(sqrt(a));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for i:=2 to t do&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if n mod i = 0 then exit(false);<br>&nbsp; &nbsp;exit(true);<br>&nbsp; &nbsp;end;<br><br><br>2://<br>&nbsp;function&nbsp; NTo(a:longint):boolean;<br>&nbsp;var&nbsp; &nbsp; ok:boolean;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;j:integer;<br>&nbsp; begin&nbsp;<br>&nbsp; &nbsp; &nbsp;ok:=true;<br>&nbsp; &nbsp; &nbsp; &nbsp; if n&lt;2 then ok:=false else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; For j:=2 to a-1 do&nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If n mod j = 0 then ok:=false;<br>&nbsp; &nbsp; &nbsp;NTo:=ok;<br>&nbsp;end;<br><br><br><br>3://<br>function snt(n: word): boolean;<br>var i: word;<br>d: byte;<br>begin<br>d:= 0;<br>for i:= 1 to n do if n mod i = 0 then inc(d);<br>if d=2 then snt:= true else snt:= false;<br>end;<br><br>4://<br>Function Kt(n:Longint):Boolean;</div><div>Var i:Longint;</div><div>&nbsp; &nbsp; d:Longint2;</div><div>Begin</div><div>&nbsp;d:=0;</div><div>&nbsp;Kt:=True;</div><div>&nbsp;For i:=2 to Round(Sqrt(n)) do</div><div>&nbsp; &nbsp;Begin</div><div>&nbsp; &nbsp; &nbsp;If (n mod i)=0 then d:=d+1;</div><div>&nbsp; &nbsp; &nbsp;If d&gt;0 then</div><div>&nbsp; &nbsp; &nbsp; &nbsp;Begin</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Kt:=False;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Break;</div><div>&nbsp; &nbsp; &nbsp; &nbsp;End;</div><div>&nbsp; &nbsp;End;</div><div>End;<br><br>4://<br><br>Function nt(q,p:longint):boolean;<br>begin&nbsp;<br>&nbsp;while p*q &lt;&gt; 0 do<br>&nbsp; if p&gt;q then p:=p mod q;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else&nbsp; q:=q mod p;<br>nt:=(p+q+1);<br>end;<br><br></div><div><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-11 02:39:12 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2217943043</guid>
      </item>
      <item>
         <title>phân tích 1 số thành thừa số nguyên tố</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2224489506</link>
         <description><![CDATA[<div>uses crt;<br>var n:longint;<br><br>&nbsp;Function&nbsp; NT(a:longint):boolean;<br>&nbsp;var &nbsp; i,t:integer;<br>&nbsp; Begin<br>&nbsp; &nbsp;if (a&lt;2) then exit(false);<br>&nbsp; &nbsp;if (a=2)or(a=3) then exit(true);<br>&nbsp; &nbsp; t:=trunc(sqrt(a));<br>&nbsp; &nbsp; &nbsp;for i:=2 to t do<br>&nbsp; &nbsp; &nbsp; if a mod i = 0 then exit(false);<br>&nbsp; &nbsp; exit(true);<br>&nbsp; End;<br><br>&nbsp; Function ptichthuasoNT(a:longint):string;<br>&nbsp; var&nbsp; i:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp;kq,tam:string;<br>&nbsp; Begin<br>&nbsp; &nbsp;kq:='';<br>&nbsp; &nbsp;i:=2;<br>&nbsp; &nbsp;while (i&lt;=a) do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;if nt(i) and&nbsp; (a mod i = 0 ) then<br>&nbsp; &nbsp; &nbsp; &nbsp;begin str(i,tam);<br>&nbsp; &nbsp; &nbsp; &nbsp;kq:=kq+'*'+tam;<br>&nbsp; &nbsp; &nbsp; &nbsp;a:=a div i;<br>&nbsp; &nbsp; &nbsp; &nbsp;end<br>&nbsp; &nbsp; &nbsp;else<br>&nbsp; &nbsp; &nbsp; inc(i);<br>&nbsp; &nbsp; end;<br>&nbsp; delete(kq,1,1);<br>&nbsp; ptichthuasoNT:=kq;<br>&nbsp;end;<br><br>&nbsp;Begin<br>&nbsp; clrscr;<br>&nbsp; &nbsp;write('Nhap so nguyen N:');<br>&nbsp; &nbsp;readln(n);<br>&nbsp; &nbsp; if nt(n) then writeln(n,' la so nguyen to')<br>&nbsp; &nbsp; &nbsp;else<br>&nbsp; &nbsp; &nbsp; writeln(n,' khong la so nguyen to');<br>&nbsp; &nbsp; writeln;<br>&nbsp; &nbsp; writeln;<br>&nbsp; &nbsp; &nbsp; Writeln('so ',n,' = ',ptichthuasoNT(n));<br>&nbsp; readln;<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-18 09:34:18 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2224489506</guid>
      </item>
      <item>
         <title>bài 2 Huyện Phụng hiệp </title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2225202738</link>
         <description><![CDATA[<div>uses crt;<br>var i,n,j,x,code :integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;s,st:string;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ok:boolean;<br>Begin<br>&nbsp;clrscr;<br>&nbsp; Write('nhap SDT: ');readln(s);<br>&nbsp; ok:=false;<br>&nbsp; st:='';<br>&nbsp; &nbsp;if length(S) = 11 then<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp;for i:=1 to&nbsp; 4 do<br>&nbsp; &nbsp; &nbsp; st:=st+s[i];<br>&nbsp; &nbsp; &nbsp; val(st,x,code);<br>&nbsp; &nbsp; &nbsp; &nbsp;for i:=1 to length(st) do<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=0162 to 0169 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if x = j then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ok:=true;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ok = true then<br>&nbsp; &nbsp; &nbsp; &nbsp; write(s,' la SDT cua nha mang Viettel')<br>&nbsp; &nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; write(s,' k pk SDT cua nha mang Viettel');<br>&nbsp; &nbsp;End<br><br>&nbsp;else<br><br>&nbsp; &nbsp;if length(s) = 10 then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;For i:=1 to 3 do<br>&nbsp; &nbsp; &nbsp;st:=st+s[i];<br>&nbsp; &nbsp; &nbsp;val(st,x,code);<br>&nbsp; &nbsp; &nbsp;for i:=1 to length(st) do<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=096 to 098 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if x = j then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ok:=true;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ok = true then<br>&nbsp; &nbsp; &nbsp; &nbsp; write(s,' la SDT cua nha mang Viettel')<br>&nbsp; &nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; write(s,' k pk SDT cua nha mang Viettel');<br>&nbsp; &nbsp; End<br><br>else<br><br>&nbsp; if (length(s) &lt; 10) or (length(s) &gt;11) &nbsp; then<br>&nbsp; &nbsp;write('khog pk SDT');<br>Readln;<br>End.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1697752358/776df9a4e6eacc1996553f9bbba92395/baii2.pas" />
         <pubDate>2022-06-20 01:21:14 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2225202738</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2228412090</link>
         <description><![CDATA[<div>Program &nbsp; Bai2;<br>Uses&nbsp; &nbsp; &nbsp; Crt;<br>Var&nbsp; &nbsp; &nbsp; &nbsp;s:string;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a:array[1..100,1..100] of char;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i,n,j,k,max,nho,tong:longint;<br>Begin<br>&nbsp; &nbsp;Clrscr;<br>&nbsp; &nbsp;Write('Nhap chuoi: ');<br>&nbsp; &nbsp;Readln(s);<br>&nbsp; &nbsp;n:=trunc(sqrt(length(s)));<br>&nbsp; &nbsp;For i:=1 to n do&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{hang}<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;k:=i;<br>&nbsp; &nbsp; &nbsp;For j:=1 to n do&nbsp; &nbsp; &nbsp; &nbsp;{cot}<br>&nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[i,j]:=s[k];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; k:=k+n;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp;end;<br><br>&nbsp; &nbsp; //Xuat<br>&nbsp; &nbsp; Max:=0;<br><br>&nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tong:=tong+ord(a[i,j]);<br>&nbsp; &nbsp; &nbsp; &nbsp; If max &lt; tong then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; max:=tong;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nho:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; For j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; Write(a[nho,j],' ');<br>&nbsp; &nbsp; &nbsp; writeln;<br>&nbsp; &nbsp; &nbsp; Write(max);<br>&nbsp; &nbsp; &nbsp; readln;<br>end.<br><br><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-06-23 02:36:49 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2228412090</guid>
      </item>
      <item>
         <title>BÀI 2</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2231417218</link>
         <description><![CDATA[<div><br>uses crt;<br>var&nbsp; &nbsp; a:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;c:string;<br>&nbsp; &nbsp; &nbsp;i,j,n:byte;<br>&nbsp; &nbsp; max:word;<br>begin<br>&nbsp;clrscr;<br>&nbsp; &nbsp;write(' Nhap chuoi: '); readln(c);<br>&nbsp; &nbsp;n:= trunc(sqrt(length(c)));<br>&nbsp; &nbsp; &nbsp;writeln(' Bang la: ');<br>&nbsp; &nbsp; &nbsp; &nbsp;for i:= 1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:= 1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;write(' ',c[n*(j-1)+i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a[i]:= a[i]+ ord(c[n*(j-1)+i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>writeln;<br>end;<br><br>max:= a[1]; j:= i;<br>f or i:= 2 to n do&nbsp;<br>&nbsp; if a[i]&gt;max then max:= a[i];<br>&nbsp;writeln(' Ket qua: ');<br>&nbsp;writeln(' a/');<br>&nbsp;for i:= 1 to n do<br>&nbsp;if a[i]=max then<br>&nbsp;begin<br>&nbsp;for j:= 1 to n do write(' ',c[n*(j-1)+i]);<br>&nbsp;writeln<br>&nbsp;end;<br>writeln;<br>writeln(' b/ Tong ma ASCII cua cac ki tu: ',max);<br>readln<br>end.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1697752358/82986c5299533008ed7d768f946b40e0/image.png" />
         <pubDate>2022-06-27 12:32:59 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2231417218</guid>
      </item>
      <item>
         <title>bài 1 </title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2231444139</link>
         <description><![CDATA[<div><br>uses crt;<br>var n,i: word;<br>&nbsp; function snt(n:integer): boolean;<br>&nbsp; var i:word;<br>&nbsp; &nbsp; &nbsp; d:byte;<br>&nbsp; begin<br>&nbsp; d:= 0;<br>&nbsp; &nbsp;for i:= 1 to n do if n mod i = 0 then inc(d);<br>&nbsp; &nbsp; if d=2 then snt:= true else snt:= false;<br>&nbsp; end;<br>&nbsp; //HAM TONG CAC SO CUA CHU SO;<br>&nbsp; function tcs(n: word): byte;<br>&nbsp; var s,t: word;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp;s:= n; t:= 0;<br>&nbsp; &nbsp; repeat<br>&nbsp; &nbsp; &nbsp;t:= t+(s mod 10);<br>&nbsp; &nbsp; &nbsp;s:= s div 10;<br>&nbsp; &nbsp; until s=0;<br>&nbsp; &nbsp; tcs:= t;<br>&nbsp; &nbsp;end;<br>&nbsp; //CT CHINH<br>Begin<br>clrscr;<br>//CAU A<br>&nbsp;write('Nhap vao mot so: '); readln(n);<br>&nbsp; if snt(n) and snt(tcs(n)) then writeln('a)',n,' la so song to.')<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else writeln('a)',n,' khong phai la so song to.');<br>//CAU B<br>&nbsp;writeln('b) Cac so song to ko lon hon ',n,': ');<br>&nbsp; for i:= 1 to n do<br>&nbsp; &nbsp;if snt(i) and snt(tcs(i)) then write(i:5);<br>&nbsp; &nbsp; writeln;<br>//CAU C<br>&nbsp;writeln('Cac cap so nguyen to sinh doi khong lon hon ',n,': ');<br>&nbsp;for i:= 3 to n-2 do<br>&nbsp; if snt(i) and snt(i+2) then<br>&nbsp; &nbsp;writeln('(',i,';',i+2,');');<br>readln<br>end.<br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1697752358/93a169594d417cf455347d23c8ee7d0e/image.png" />
         <pubDate>2022-06-27 13:08:37 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2231444139</guid>
      </item>
      <item>
         <title>BÀI 3</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2231447512</link>
         <description><![CDATA[<div><br>uses&nbsp; &nbsp; Crt;<br>const fi='robot.inp';<br>&nbsp; &nbsp; &nbsp; fo='robot.out';<br>var&nbsp; &nbsp; &nbsp;s:string;<br>&nbsp; &nbsp; &nbsp; &nbsp; k,l,nl:integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; f,g:text;<br>begin<br>&nbsp; &nbsp; assign(f,fi);<br>&nbsp; &nbsp; &nbsp;reset(f);&nbsp; &nbsp; assign(g,fo);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;rewrite(g);<br>&nbsp; &nbsp; While not EOF(f) do<br>&nbsp; begin<br>&nbsp; &nbsp; readln(f,k);<br>&nbsp; &nbsp; l:=k;<br>&nbsp; &nbsp; nl:=0;<br>&nbsp; &nbsp; s:='';<br>&nbsp; &nbsp; while l&gt;2 do<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if l mod 2 = 0 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; s:='N2 '+s;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; l:=l div 2;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nl:=nl+4;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; s:='C1 '+ s;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; l:=l-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nl:=nl+2;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; S:='C1 '+S;<br>&nbsp; &nbsp; nl:=nl+2;<br>&nbsp; &nbsp; writeln(g,nl);<br>&nbsp; &nbsp; write(g,s);<br>&nbsp; end;<br>&nbsp; &nbsp; close(f);&nbsp; close(g);<br>&nbsp; &nbsp; end.<br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1697752358/0733bdc5f4fd5a0c29b3891d48fa16c4/image.png" />
         <pubDate>2022-06-27 13:12:09 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2231447512</guid>
      </item>
      <item>
         <title>Bài 4 Bình Định</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2234277232</link>
         <description><![CDATA[<div>program TamGiacLonNhat;<br>uses crt;<br>const fi='tamgiac.inp';<br>var aa, b,c,p,s,sMax:real;<br>&nbsp; &nbsp; n,i,j,k,ca,cb,cc:longint;<br>&nbsp; &nbsp; f,g:text;<br>&nbsp; &nbsp; A:array[1..256,1..2] of longint;<br>begin<br>clrscr;<br>&nbsp; &nbsp;//Gan ten cho tep<br>&nbsp; assign(f,fi); reset(f);<br>&nbsp; &nbsp;assign(g,fo); rewrite(g);<br>&nbsp; &nbsp;readln(f,n);<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp;readln(f,A[i,1], A[i,2]);<br>&nbsp; &nbsp;//Xuat mang kiem tra:<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp;writeln(A[i,1],' ',A[i,2]);<br>&nbsp; &nbsp;sMax:=0;<br>&nbsp; &nbsp;//Duyet mang toa do va tinh dien tich tam giac<br>&nbsp; &nbsp;for i:=1 to n-2 do<br>&nbsp; &nbsp; for j:=i+1 to n-1 do<br>&nbsp; &nbsp; &nbsp; for k:=j+1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aa:=sqrt( sqr(A[j,1]-A[i,1])+sqr(A[j,2]-A[i,2]));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;b:=sqrt( sqr(A[j,1]-A[k,1])+sqr(A[j,2]-A[k,2]));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;c:=sqrt( sqr(A[k,1]-A[i,1])+sqr(A[k,2]-A[i,2]));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;p:=(aa+b+c)/2;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;s:=sqrt(p*(p-aa)*(p-b)*(p-c));<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if s&gt;sMax then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;sMax:=s;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ca:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cb:=j;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cc:=k;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;writeln(ca,' ',cb, ' ', cc);<br>&nbsp; &nbsp;writeln(sMax:0:0);<br>&nbsp; &nbsp;close(f); <br>&nbsp; &nbsp;readln;<br>end.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1743695800/ea69db5346043a43188a231f7ee20030/image.png" />
         <pubDate>2022-06-30 12:46:07 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2234277232</guid>
      </item>
      <item>
         <title>Bài 1 Bình Định</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2234277921</link>
         <description><![CDATA[<div>Uses crt;<br>Var&nbsp; n,k,i:integer;s:string;<br>Begin<br>&nbsp;clrscr;<br>&nbsp; write('nhap so nguyen: ');readln(n);<br>&nbsp; &nbsp; k:=n;<br>&nbsp; s:=' ';<br>&nbsp;For i:=1 to (n div 1000) do<br>&nbsp;Begin<br>&nbsp; s:=s+'M';<br>&nbsp; n:=n mod 1000;<br>&nbsp; &nbsp;if n &gt;=900 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'CM';<br>&nbsp; &nbsp; &nbsp;n:=n-900;<br>&nbsp; &nbsp; end<br>&nbsp; Else<br>&nbsp; &nbsp;if n &gt;= 500 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'D';<br>&nbsp; &nbsp; &nbsp;n:=n-500;<br>&nbsp; &nbsp; end<br>&nbsp; Else<br>&nbsp; &nbsp;if n &gt;= 400 then<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; s:=s+'CD';<br>&nbsp; &nbsp; n:=n-400;<br>&nbsp; &nbsp;end;<br>&nbsp; end;<br>&nbsp; for i:=1 to (n div 100) do<br>&nbsp; &nbsp;s:=s+'C';<br>&nbsp; &nbsp;n:=n mod 100;<br>&nbsp; &nbsp;if n &gt;= 90 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'XC';<br>&nbsp; &nbsp; &nbsp;n:=n-90;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n&gt;= 50 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'L';<br>&nbsp; &nbsp; &nbsp;n:=n-50;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n&gt;= 40 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'XL';<br>&nbsp; &nbsp; &nbsp;n:=n-40;<br>&nbsp; &nbsp; end;<br>&nbsp; For i:=1 to (n div 10) do<br>&nbsp; &nbsp;s:=s+'X';<br>&nbsp; &nbsp;n:=n mod 10;<br>&nbsp; &nbsp;if n = 9 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'IX';<br>&nbsp; &nbsp; &nbsp;n:=n-9;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n = 8 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'VIII';<br>&nbsp; &nbsp; &nbsp;n:=n-8;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n = 7 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'VII';<br>&nbsp; &nbsp; &nbsp;n:=n-7;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp; if n = 6 then<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; s:=s+'VI';<br>&nbsp; &nbsp; &nbsp; n:=n-6;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;if n=5 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'V';<br>&nbsp; &nbsp; &nbsp;n:=n-5;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n=4 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'IV';<br>&nbsp; &nbsp; &nbsp;n:=n-4;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n=3 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'III';<br>&nbsp; &nbsp; &nbsp;n:=n-3;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n=2 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'II';<br>&nbsp; &nbsp; &nbsp;n:=n-2;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;if n=1 then<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;s:=s+'I';<br>&nbsp; &nbsp; end;<br>writeln;<br>writeln('So Vua Nhap la: ',k);<br>writeln('SAU KHI BIEN DOI');<br>write('So LA MA la: ',S,'');<br>readln;<br>end.<br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1743695800/41507f67ce9c6b1bb61c5d182427e7fd/image.png" />
         <pubDate>2022-06-30 12:47:07 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2234277921</guid>
      </item>
      <item>
         <title>Bài 2 phụng hiệp</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2236297674</link>
         <description><![CDATA[<div>uses crt;<br>var i,n,code,j,x,tu,mau:integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tg,s:string;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;d,uc,b,v:longint;<br>function UCLN(x,y:longint):longint;<br>&nbsp;begin<br>&nbsp; x:=abs(x);<br>&nbsp; y:=abs(y);<br>&nbsp; while x&lt;&gt;y do<br>&nbsp; &nbsp; if x&gt;y then x:=x-y<br>&nbsp; &nbsp; else y:=y-x;<br>&nbsp; UCLN:=x;<br>&nbsp;end;<br>&nbsp;begin<br>&nbsp; clrscr;<br>&nbsp; highvideo;<br>&nbsp; &nbsp;write('nhap so thuc: ');readln(s);<br>&nbsp; &nbsp;tg:='1';<br>&nbsp; &nbsp;d:=0;<br>&nbsp; &nbsp;for i:=1 to length(s) do<br>&nbsp; &nbsp; while (s[i]='.') do<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; delete(s,i,1);<br>&nbsp; &nbsp; for j:=i to length(s) do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;d:=d+1;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp;end;<br>&nbsp; &nbsp;val(s,x,code);<br>&nbsp; &nbsp; &nbsp;for i:=1 to length(s) do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; tg:=tg+'0';<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp;for i:=1 to length(tg) do<br>&nbsp; &nbsp; &nbsp;delete(tg,d+2,1);<br>&nbsp; &nbsp; &nbsp;val(tg,b,v);<br>&nbsp;tu:=x;<br>&nbsp;mau:=b;<br>&nbsp; uc:=UCLN(tu,mau);<br>&nbsp; tu:=tu div uc;<br>&nbsp; mau:=mau div uc;<br>&nbsp; writeln('KET QUA LA:',tu,'/',mau);<br>&nbsp; &nbsp;readln;<br>end.<br><br><br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1745633749/7e4f19e94e197df818b5ea924f9aae44/image.png" />
         <pubDate>2022-07-04 07:45:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2236297674</guid>
      </item>
      <item>
         <title>Sổ Sức Khỏe </title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2241389894</link>
         <description><![CDATA[<div>uses crt;<br>const&nbsp; fi='suckhoe.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp;fo='suckhoe.out';<br>var i,n,dem,j:integer;<br>&nbsp; &nbsp; &nbsp; a:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; test:boolean;<br>&nbsp; &nbsp; &nbsp; f,g:text;<br>Begin<br>Assign(f,fi);&nbsp; &nbsp; Assign(g,fo);<br>reset(f);&nbsp; &nbsp; &nbsp; rewrite(g);<br>readln(f,n);<br>&nbsp; &nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp;readln(f,a[i]);<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; dem:=1;<br>&nbsp; &nbsp;for i:=2 to n do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp;test:=true;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for j:=1 to i-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if a[j]=a[i] then test:=false;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if test=true then dem:=dem+1;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;writeln(g,dem);<br>close(f);close(g);<br><br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-12 01:20:20 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2241389894</guid>
      </item>
      <item>
         <title>Từ Dài Nhất</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2241413978</link>
         <description><![CDATA[<div>uses crt;<br>const&nbsp; fi='tudainhat.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp;fo='tudainhat.out';<br>var st,kq:string;<br>&nbsp; &nbsp; vt,dai,max,d,i,j:integer;<br>&nbsp; &nbsp; a:array[1..100] of string;<br>&nbsp; &nbsp; f,g:text;<br>begin<br>assign(f,fi);&nbsp; assign(g,fo);<br>reset(f);&nbsp; &nbsp; &nbsp; rewrite(g);<br><br>&nbsp; &nbsp; readln(f,st);<br>&nbsp; &nbsp; max:=0;<br>&nbsp; &nbsp; st:=st+' ';<br>&nbsp; &nbsp; d:=0;<br>&nbsp; //tim va xoa ki tu '' trong xau<br>&nbsp; &nbsp; while length(st) &lt;&gt; 0 do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; vt:=pos(' ',st);<br>&nbsp; &nbsp; &nbsp; &nbsp; dai:=vt-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; kq:=copy(st,1,dai);<br>&nbsp; &nbsp; &nbsp; &nbsp; inc(d);<br>&nbsp; &nbsp; &nbsp; &nbsp; a[d]:=kq;<br>&nbsp; &nbsp; &nbsp; &nbsp; delete(st, 1, vt);<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; //tim ki tu co do dai lon nhat trong xau<br>&nbsp; &nbsp; &nbsp; for i:=1 to d do<br>&nbsp; &nbsp; &nbsp; &nbsp; if length(a[i])&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:=length(a[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;j:=1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end<br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp;if length(a[i])=max then<br>&nbsp; &nbsp; &nbsp; inc(j);<br>&nbsp; &nbsp; &nbsp; &nbsp; writeln(g,max);<br>&nbsp; &nbsp; &nbsp; close(f); &nbsp; close(g);<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-12 01:44:52 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2241413978</guid>
      </item>
      <item>
         <title>3</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2242914017</link>
         <description><![CDATA[<div>Program &nbsp; Bai3;<br>Const &nbsp; fi='CD.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; fo='CD.out';<br>Var&nbsp; &nbsp; &nbsp;i,j,n,m:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; ok:boolean;<br>&nbsp; &nbsp; &nbsp; &nbsp; f,g:text;<br>Begin<br>&nbsp; Assign(f,fi);&nbsp; reset(f);<br>&nbsp; Assign(g,fo);&nbsp; Rewrite(g);<br>&nbsp; Read(f,n,m); ok:=false;<br>&nbsp; For i:=1 to n do<br>&nbsp; &nbsp; If (i*2+(n-i)*4)=m then<br>&nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp;ok:=true;<br>&nbsp; &nbsp; &nbsp; &nbsp;Break;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; If ok then write(g,i,' ',n-i) else write(g,-1);<br>&nbsp; Close(f);&nbsp; Close(g);<br>End.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-14 00:08:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2242914017</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2243001962</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1673033732/23b13048cb02649eab54e8fcba5266ab/De_thi_HSG_tin_tham_khao.pdf" />
         <pubDate>2022-07-14 01:40:24 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2243001962</guid>
      </item>
      <item>
         <title>hình chữ nhật</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2244649668</link>
         <description><![CDATA[<div>const&nbsp; fi='chunhat.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp;fo='chunhat.out';<br>var&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;a,b:integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i,x,y:integer;<br>&nbsp; &nbsp; &nbsp;min,max,dt:real;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f,g:text;<br>begin<br>&nbsp;assign(f,fi);reset(f);<br>&nbsp;assign(g,fo);rewrite(g);<br>&nbsp; repeat<br>&nbsp; &nbsp;readln(f,a,b);<br>&nbsp; until (a&gt;=1) and (a&lt;=100) and (b&gt;=1) and (b&lt;=100);<br>&nbsp; max:=(a*b)/2;<br>&nbsp; min:=max;<br><br>//thuat toan tim dien tich cs gia tri lon nhat<br>&nbsp; for i:=0 to b do<br>&nbsp; begin<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp;dt:=abs(a*b-(a*i/2)-((b-i)*i/2)-((a-i)*b/2));<br>&nbsp; &nbsp;end;<br><br>//tim MIN<br>&nbsp; if dt&lt;min then<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; x:=i;<br>&nbsp; &nbsp; min:=dt;<br>&nbsp; &nbsp;end<br>&nbsp;else<br>//tim MAX<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; y:=i;<br>&nbsp; &nbsp; max:=dt;<br>&nbsp; &nbsp;end;<br>&nbsp;end;<br><br><br>writeln(g,max:5:1);<br>writeln(g,y:2);<br>writeln(g,min:5:1);<br>writeln(g,x:2);<br>close(f);close(g);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-17 02:30:29 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2244649668</guid>
      </item>
      <item>
         <title>hình vuông </title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2244649905</link>
         <description><![CDATA[<div>const&nbsp; f1='kichthuoc.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; f2='ngang.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;f3='doc.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ff='hinhvuong.out';<br>Var i,n,m,k,t:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dem:longint;<br>&nbsp; &nbsp; &nbsp; f,g,o,v:text;<br>&nbsp; &nbsp; &nbsp; &nbsp; ngang:array[1..100,1..100] of integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; doc:array[1..100]&nbsp; of longint;<br>Begin<br>&nbsp;Assign(f,f1);reset(f);<br>&nbsp;Assign(g,f2);reset(g);<br>&nbsp;Assign(o,f3);reset(o);<br>&nbsp;Assign(v,ff);rewrite(v);<br><br>&nbsp; readln(f,n,m);<br><br>&nbsp; k:=1;<br>&nbsp; dem:=0;<br>&nbsp; t:=m-1;<br><br>&nbsp; &nbsp;for i:=1 to n-1 do<br>&nbsp; &nbsp;read(g,ngang[2,i]);<br>&nbsp; &nbsp; While t &gt; 0 do<br>&nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; read(g,ngang[k,i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; read(o,doc[1]);<br><br>&nbsp; &nbsp; &nbsp; &nbsp;For i:=2 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;read(o,doc[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (doc[i]=1) and (ngang[k,i-1]=1) and (ngang[3-k,i-1]=1) and (doc[i-1]=1) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dem:=dem+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; End;<br><br>&nbsp; &nbsp; &nbsp; &nbsp;k:=3-k;<br>&nbsp; &nbsp; &nbsp; &nbsp;t:=t-1;<br>&nbsp; &nbsp; &nbsp;End;<br>&nbsp; Write(v,dem);<br>&nbsp; close(f);&nbsp; close(g); &nbsp; close(v);&nbsp; &nbsp; Close(o);<br>End.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-17 02:31:14 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2244649905</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2247248338</link>
         <description><![CDATA[<div>Const&nbsp; &nbsp; fi='Matran.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fo='Matran.out';<br>Var&nbsp; &nbsp; &nbsp; f,g:text;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A:array[1..100,1..100] of Longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;b:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i,j,m,n,tong,min,d,tam,nho:longint;<br>Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Assign(f,fi);&nbsp; Reset(f);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Assign(g,fo);&nbsp; Rewrite(g);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Readln(f,m,n);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;For i:=1 to m do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;For j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; read(f,a[i,j]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Readln(f);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;For i:=1 to m do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; For j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Tong:=tong+a[i,j];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(d);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; b[d]:=tong;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;For i:=1 to d-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:=i+1 to d do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If b[i]&gt;b[j] then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Tam:=b[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;b[i]:=b[j];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;b[j]:=tam;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i:=1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; While b[i] = b[i+1] do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(i);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; min:=b[i+1];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; For i:=1 to m do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; For j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Tong:=tong+a[i,j];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If min =tong then nho:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If min&lt;&gt;0 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeln(g,min);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeln(g,nho);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else writeln(g,'Khong co!');<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Close(f); Close(g);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-21 01:49:51 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2247248338</guid>
      </item>
      <item>
         <title>Các Số Liên Tiếp</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2250462106</link>
         <description><![CDATA[<pre>uses crt;
const so: set of char=['0','1','2','3','4','5','6','7','8','9'];
var a:array[1..100] of integer;
st,b:string;
c,l,i,n,j:integer;
s: integer;

begin
    clrscr;
    write('Nhap xau:');readln(st);
        l:=length(st); i:=1; n:=0;
    repeat
        if (st[i] in so) then
            begin
                b:='';
                repeat
                    b:=b+st[i];
                    inc(i);
                until (not(st[i] in so)) or (i&gt;l);
                inc(n);
                val(b,a[n],c);
            end;
        inc(i);
    until i&gt;l;
    
    
    S := 0;
    for i:=1 to n do
        S := S + a[i] ;
    writeln;
    writeln('tong cac chu so trong xau la: ',s);
    readln;
end.</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-27 07:46:39 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2250462106</guid>
      </item>
      <item>
         <title>di xe dap </title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2250469958</link>
         <description><![CDATA[<div>uses crt;<br>var s:string;<br>&nbsp; &nbsp; x,y,z,t:byte;<br>begin<br>&nbsp; write('Nhap vao mot xau: ');<br>&nbsp; readln(s);<br>&nbsp; z:=length(s);<br>&nbsp; for y:=length(s) downto 1 do<br>&nbsp; begin<br>&nbsp; &nbsp; if ((s[y]=' ')or(y=1)) then begin for t:=y to z do write(s[t]);z:=y end;<br>&nbsp; &nbsp; write(' ');<br>&nbsp; end;<br>&nbsp; readln;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-27 08:01:07 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2250469958</guid>
      </item>
      <item>
         <title>Bai1_VinhPhuc</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2250917438</link>
         <description><![CDATA[<div>uses crt;<br>var s:string;<br>&nbsp; &nbsp; n,i,j,dem,son:longint;<br><br><br>function tich(n:longint):longint;<br>var i,j,t:longint;st:string;<br>begin<br>&nbsp; &nbsp; t:=1;<br>&nbsp; &nbsp; str(n,st);<br>&nbsp; &nbsp; for i:=1 to length(st) do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; val(st[i],j);<br>&nbsp; &nbsp; &nbsp; &nbsp; t:=t*j;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; tich:=t;<br>end;<br><br>begin<br>&nbsp; clrscr;<br>&nbsp; write('n='); readln(n);<br>&nbsp; son:=n;<br>&nbsp; str(son,s);<br>&nbsp; i:=length(s);<br>&nbsp; while i&gt;1 do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; dem:=dem+1;<br>&nbsp; &nbsp; &nbsp; son:=tich(son);<br>&nbsp; &nbsp; &nbsp; str(son,s);<br>&nbsp; &nbsp; &nbsp; i:=length(s);<br>&nbsp; &nbsp; end;<br>&nbsp; writeln(dem);<br>&nbsp; readln;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-07-28 02:35:35 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2250917438</guid>
      </item>
      <item>
         <title>Đà Nẵng 4</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2255180347</link>
         <description><![CDATA[<div>Uses crt;<br>Var f,g:text;<br>&nbsp; &nbsp; &nbsp; &nbsp; n:integer;<br>&nbsp; &nbsp;t,i,d,j,dem:integer;<br>&nbsp; &nbsp;ok:boolean;<br>Fibo,vitri:array[1..1000] of integer;<br><br>Begin<br>&nbsp; &nbsp;Assign(f, 'fibo.inp');&nbsp; Reset(f);<br>&nbsp; &nbsp;Assign(g, 'fibo.out');&nbsp; Rewrite(g);<br>&nbsp; &nbsp;read(f, n);<br>&nbsp; &nbsp; Fibo[1]:= 1;<br>&nbsp; &nbsp; Fibo[2]:= 1;<br>&nbsp; &nbsp; &nbsp;t:= 1;<br>&nbsp; &nbsp; &nbsp;d:= 2;<br>&nbsp; &nbsp; &nbsp;ok:= true;<br>&nbsp; &nbsp; &nbsp;While t &lt; n do<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(d);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Fibo[d]:= Fibo[d-1]+ Fibo[d-2];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t:= Fibo[d];<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;t:= n;<br>&nbsp; &nbsp;j:= 0;<br>&nbsp; &nbsp;For i:= d downto 1 do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If Fibo[i] &lt;= t then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(j);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Vitri[j]:= i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t:= t - Fibo[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; dem:=0;<br>&nbsp; &nbsp; &nbsp; If t &lt;&gt; 0 then ok:= false;<br>&nbsp; &nbsp; &nbsp; If Ok = true then<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for i:= 1 to j do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If i &lt;&gt; j then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;write(g, Fibo[vitri[i]], ' + ') else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;write(g, Fibo[vitri[i]]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(dem);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else write(g, 'Khong the bieu dien ') ;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Writeln(g);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Write(g,dem);<br>Close(f);<br>Close(g);<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-08-05 01:38:04 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2255180347</guid>
      </item>
      <item>
         <title>cách tạo và ẩn  ổ đĩa</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2255197592</link>
         <description><![CDATA[<div>select volume ổ đĩa {chọn}&nbsp;<br>remove letter ổ đĩa{ để ẩn}<br>Assign letter ổ đĩa {hiện lại}</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1697752358/8e60a2c343e4e15f623279c49af44dc6/image.png" />
         <pubDate>2022-08-05 02:08:40 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2255197592</guid>
      </item>
      <item>
         <title>baif 4</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2258658215</link>
         <description><![CDATA[<div>Program &nbsp; bai4;<br>Const&nbsp; &nbsp; &nbsp;fi='fibo.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fo='fibo.out';<br><br>Var&nbsp; &nbsp; &nbsp; &nbsp;f,g:text;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i,dem,f1,f2,n,j,tong:longint;<br>Begin<br>&nbsp; &nbsp; assign(f,fi);&nbsp; reset(f);<br>&nbsp; &nbsp; assign(g,fo);&nbsp; rewrite(g);<br>&nbsp; &nbsp; readln(f,n);<br>&nbsp; &nbsp; f1:=1;&nbsp; f2:=1;&nbsp; a[1]:=1;&nbsp; a[2]:=1; &nbsp; j:=2; &nbsp; dem:=0;<br>&nbsp; &nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If i=f1+f2 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; j:=j+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[j]:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f1:=f2;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f2:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; For i:=2 to j do<br>&nbsp; &nbsp; &nbsp; Tong:=tong + a[i];<br>&nbsp; &nbsp; i:=j;<br>&nbsp; &nbsp; while i&gt;0 do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; while tong - a[i] &gt;= n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=tong-a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i:=i-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dem:=dem+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i:=i-1;<br>&nbsp; &nbsp; &nbsp; end;<br><br>&nbsp; &nbsp; j:=j-1;<br>&nbsp; &nbsp; write(g,j-dem);<br><br>&nbsp; &nbsp; close(f);&nbsp; Close(g);<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-08-11 02:11:20 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2258658215</guid>
      </item>
      <item>
         <title>day fibonacy  bai4 da nang </title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2258661325</link>
         <description><![CDATA[<div>Program &nbsp; bai4;<br>Const&nbsp; &nbsp; &nbsp;fi='fibo.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fo='fibo.out';<br><br>Var&nbsp; &nbsp; &nbsp; &nbsp;f,g:text;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i,dem,f1,f2,n,j,tong:longint;<br>Begin<br>&nbsp; &nbsp; assign(f,fi);&nbsp; reset(f);<br>&nbsp; &nbsp; assign(g,fo);&nbsp; rewrite(g);<br>&nbsp; &nbsp; readln(f,n);<br>&nbsp; &nbsp; //day fibonacy<br>&nbsp; &nbsp; f1:=1;&nbsp; f2:=1;&nbsp; a[1]:=1;&nbsp; a[2]:=1; &nbsp; j:=2; &nbsp; dem:=0;<br>&nbsp; &nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If i=f1+f2 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; j:=j+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[j]:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f1:=f2;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f2:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; //tinh tong<br>&nbsp; &nbsp; For i:=2 to j do<br>&nbsp; &nbsp; &nbsp; Tong:=tong + a[i];<br>&nbsp; &nbsp; //tinh<br>&nbsp; &nbsp; i:=j;<br>&nbsp; &nbsp; while i&gt;0 do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; while tong - a[i] &gt;= n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=tong-a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i:=i-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;dem:=dem+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i:=i-1;<br>&nbsp; &nbsp; &nbsp; end;<br><br>&nbsp; &nbsp; j:=j-1;<br>&nbsp; &nbsp; //xuat<br>&nbsp; &nbsp; write(g,j-dem);<br><br>&nbsp; &nbsp; close(f);&nbsp; Close(g);<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-08-11 02:16:18 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2258661325</guid>
      </item>
      <item>
         <title></title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2261826592</link>
         <description><![CDATA[<div>Program bsname;<br>Uses crt;<br>Const fi='bsname.inp';<br>&nbsp; &nbsp; &nbsp; fo='bsname.out';<br>Var s:string;<br>&nbsp; &nbsp; B:array['a'..'z'] of longint;<br>&nbsp; &nbsp; i:char;<br>&nbsp; &nbsp; j:longint;<br>&nbsp; &nbsp; f,g:text;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Read(f,s);<br>&nbsp;For i:='a' to 'z' do<br>&nbsp; B[i]:=0;<br>&nbsp;For i:='a' to 'z' do<br>&nbsp; For j:=1 to length(s) do<br>&nbsp; &nbsp;If i=s[j] then<br>&nbsp; &nbsp; &nbsp;B[i]:=B[i]+1;<br>&nbsp;For i:='a' to 'z' do<br>&nbsp; Write(g,B[i],' ');<br>&nbsp; Close(f);Close(g);<br>&nbsp;Readln;<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-08-16 03:10:14 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2261826592</guid>
      </item>
      <item>
         <title>Bài 2 </title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2264326451</link>
         <description><![CDATA[<div>var i,n,tam: longint;<br>&nbsp; &nbsp; a:array[1..1000] of longint;<br>&nbsp; &nbsp; f,g:text;<br>procedure tbc(l,r: longint);<br>var i, j, x, t: longint;<br>begin<br>&nbsp; &nbsp; i:=l; j:=r; x:=a[(l+r) div 2];<br>&nbsp; &nbsp; repeat<br>&nbsp; &nbsp; &nbsp; &nbsp; while a[i] &gt; x do inc(i);<br>&nbsp; &nbsp; &nbsp; &nbsp; while a[j] &lt; x do j:=j-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; if i &lt;= j then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; t:=a[i]; a[i]:=a[j]; a[j]:=t;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(i); j:=j-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; until i &gt; j;<br>&nbsp; &nbsp; if i&lt;r then tbc(i,r);<br>&nbsp; &nbsp; if l&lt;j then tbc(l,j);<br>end;<br><br>begin<br>assign(f,'Test.inp');<br>assign(g,'Test.out');<br>reset(f);<br>rewrite(g);<br>readln(f,n);<br><br>&nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; read(f,a[i]);<br><br>&nbsp; &nbsp; tbc(1,n);<br>&nbsp; &nbsp; i:=2; tam:=a[1]+1;<br>&nbsp; &nbsp; while (i &lt;= n) and (i &lt;= tam) do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; if a[i] + i &lt; tam then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tam:=a[i] + i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(i);<br>&nbsp; &nbsp; end;<br><br>&nbsp; &nbsp; if tam &gt; n then<br>&nbsp; &nbsp; &nbsp;writeln(g,n)<br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp;writeln(g,tam);<br>close(f);<br>close(g);<br>end.<br><br><br><br><br><br><br><br><br><br>BÀI CHÍNH:<br>Var &nbsp; i,j,n,dem&nbsp; :integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a&nbsp; &nbsp; :array[1..1000] of integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tbc&nbsp; :real;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f,g&nbsp; :text;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ok &nbsp; :boolean;<br>Begin<br>assign(f,'gach.inp');<br>assign(g,'gach.out');<br>reset(f);<br>rewrite(g);<br>readln(f,n);<br><br>//nhap mang va tbc<br>&nbsp;ok:=false;<br>&nbsp;tbc:=0;<br>&nbsp;dem:=0;<br>&nbsp;For i:=1 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;read(f,A[i]);<br>&nbsp; &nbsp;tbc:=tbc+a[i];<br>&nbsp; End;<br>&nbsp; tbc:=tbc / n;<br><br><br>//chong gach<br>&nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp;If A[i]=tbc then<br>&nbsp; &nbsp; ok:=true<br>&nbsp; &nbsp;else<br>&nbsp; &nbsp; ok:=false;<br>&nbsp; &nbsp;For j:=n downto 1 do<br>&nbsp; &nbsp; If A[j]=tbc then<br>&nbsp; &nbsp; &nbsp;ok:=true<br>&nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp;ok:=false;<br><br>&nbsp; &nbsp;If ok=false then<br>&nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;If A[i]&lt;tbc then<br>&nbsp; &nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; A[i]:=A[i]+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; inc(dem);<br>&nbsp; &nbsp; &nbsp; End<br><br>&nbsp; &nbsp; &nbsp;Else<br><br>&nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; A[i]:=A[i]-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; inc(dem);<br>&nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; End;<br><br>&nbsp;writeln(dem);<br>&nbsp;//xuat KQ<br>&nbsp; If ok=true then<br>&nbsp; &nbsp; Write(g,'Khong can duy chuyen lan nao')<br>&nbsp; else<br>&nbsp; &nbsp; Write(g,dem);<br><br>&nbsp;Close(f);<br>&nbsp;Close(g);<br>End.<br><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-08-18 12:30:46 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2264326451</guid>
      </item>
      <item>
         <title>bai2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2270823995</link>
         <description><![CDATA[<div>Program &nbsp; Bai2;<br>uses &nbsp; crt;<br>Var&nbsp; &nbsp; &nbsp; &nbsp;s,st,kq,tam:string;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i,n,max,j,k,d:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a:array[1..255]Of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; f,g:text;<br>begin<br>clrscr;<br>&nbsp; &nbsp;assign(f,'nmax.inp');&nbsp; reset(f);<br>&nbsp; &nbsp;assign(g,'nmax.out');&nbsp; rewrite(g);<br>&nbsp; &nbsp;Readln(f,s);<br>&nbsp; &nbsp;st:='';<br>&nbsp; &nbsp;For i:=1 to length(s) do<br>&nbsp; &nbsp; &nbsp;If s[i]in['0'..'9'] then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; val(s[i],d);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; inc(j);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a[j]:=d;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;n:=j;<br>&nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp; &nbsp;write(a[i]);<br><br>&nbsp; &nbsp;For i:=1 to n-4 do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; If max&lt;a[i] then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; max:=a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; k:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp;end;<br><br>&nbsp; &nbsp;writeln;<br>&nbsp; &nbsp;str(max,tam);<br>&nbsp; &nbsp;kq:=kq+tam;<br>&nbsp; &nbsp;max:=0;<br>&nbsp; &nbsp;For i:=k+1 to n-3 do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; If max&lt;a[i] then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; max:=a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; k:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;str(max,tam);<br>&nbsp; &nbsp;kq:=kq+tam;<br>&nbsp; &nbsp;max:=0;<br>&nbsp; &nbsp;For i:=k+1 to n-2 do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; If max&lt;a[i] then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; max:=a[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; k:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;str(max,tam);<br>&nbsp; &nbsp;kq:=kq+tam;<br>&nbsp; &nbsp;For i:=k+1 to n do<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp;str(a[i],tam);<br>&nbsp; &nbsp; &nbsp;kq:=kq+tam<br>&nbsp; &nbsp;end;<br>&nbsp; &nbsp;write(g,kq);<br>&nbsp; &nbsp;CLose(f);&nbsp; Close(g);<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-08-25 01:56:04 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2270823995</guid>
      </item>
      <item>
         <title>bai4 Lai Vung Dong Thap</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2273212344</link>
         <description><![CDATA[<div>Program&nbsp; &nbsp; &nbsp;bai4;<br>Var&nbsp; &nbsp; &nbsp;a:array[1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; i,n,k,j,tong,max:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp; f,g:text;<br>begin<br>&nbsp; &nbsp;assign(f,'Bl4.inp'); &nbsp; reset(f);<br>&nbsp; &nbsp;assign(g,'Bl4.out'); &nbsp; rewrite(g);<br>&nbsp; &nbsp;Readln(f,n);<br>&nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp; &nbsp; read(f,a[i]);<br>&nbsp; &nbsp;For i:=1 to n-1 do<br>&nbsp; &nbsp; &nbsp;For j:=i+1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;For k:=i to j do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=tong+a[k];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;If tong&gt;max then max:=tong;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;write(max);<br>&nbsp; &nbsp;close(f);&nbsp; close(g);<br>&nbsp; &nbsp;Readln<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-08-27 02:03:52 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2273212344</guid>
      </item>
      <item>
         <title>zz</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2289427393</link>
         <description><![CDATA[<div>Program &nbsp; Bai4;<br>Uses&nbsp; &nbsp; &nbsp;crt;<br>Var &nbsp; dem,d,i,n:longint;<br>Function&nbsp; &nbsp; dx(n:longint):boolean;<br>Var &nbsp; i:integer;<br>&nbsp; &nbsp; &nbsp; st,s:string;<br>&nbsp; &nbsp; &nbsp; ok:boolean;<br>Begin<br>st:='';<br>&nbsp; &nbsp; &nbsp; str(n,s);<br>&nbsp; &nbsp; &nbsp; For i:=length(s) downto 1&nbsp; do<br>&nbsp; &nbsp; &nbsp; &nbsp; st:=st+s[i];<br>&nbsp; &nbsp; &nbsp; If st=s then dx:=true else dx:=false;<br>end;<br>Begin<br>&nbsp; &nbsp;Clrscr;<br>&nbsp; &nbsp;write('Nhap n: '); readln(n);<br>&nbsp; &nbsp;For i:=10000 to 99999 do<br>&nbsp; &nbsp; &nbsp; &nbsp;If (dx(i))and(i mod n = 0) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; d:=d+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dem:=dem+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write(i,'&nbsp; ');<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If dem= 5 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeln;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; dem:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;write(d);<br>&nbsp; &nbsp;readln<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-09 09:44:03 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2289427393</guid>
      </item>
      <item>
         <title>zz</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2310231358</link>
         <description><![CDATA[<div>Program&nbsp; &nbsp; Bai2;<br>Const&nbsp; &nbsp; &nbsp; fi='Bai2.inp';<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;fo='Bai2.out';<br>var&nbsp; &nbsp; &nbsp; &nbsp; s,st,kq:string;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:char;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;f,g:text;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i,nho:longint;<br><br>Begin<br>&nbsp; &nbsp;Assign(f,fi); &nbsp; Assign(g,fo);<br>&nbsp; &nbsp;Reset(f); &nbsp; Rewrite(g);<br>&nbsp; &nbsp;Readln(f,st);<br>&nbsp; &nbsp;For i:=1 to length(st) do<br>&nbsp; &nbsp; &nbsp;If st[i]in['0'..'9'] then s:=s+st[i];<br>&nbsp; &nbsp;max:='0';<br>&nbsp; &nbsp;For i:=1 to length(s)-3 do<br>&nbsp; &nbsp; &nbsp;If s[i]&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; max:=s[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nho:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;kq:=kq+max; max:='0';<br><br><br>&nbsp; &nbsp;For i:=nho+1 to length(s)-2 do<br>&nbsp; &nbsp; &nbsp;If s[i]&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; max:=s[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nho:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;kq:=kq+max; max:='0';<br><br><br>&nbsp; &nbsp;For i:=nho+1 to length(s)-1 do<br>&nbsp; &nbsp; &nbsp;If s[i]&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:=s[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nho:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;kq:=kq+max;&nbsp; max:='0';<br><br>&nbsp; &nbsp;If nho = length(s)-1 then kq:=kq+s[length(s)] else<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp;For i:=nho+1 to length(s) do<br>&nbsp; &nbsp; &nbsp;If s[i]&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:=s[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;nho:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp;kq:=kq+max;<br>&nbsp; &nbsp;end;<br>&nbsp; &nbsp;write(g,kq);<br>&nbsp; &nbsp;Close(f);&nbsp; close(g);<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-23 09:38:15 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2310231358</guid>
      </item>
      <item>
         <title>rut gon ps</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2310274609</link>
         <description><![CDATA[<div>uses crt;<br>const fi='BAI1.inp';<br>&nbsp; &nbsp; &nbsp; fo='BAI1.out';<br>var a,b,c,d,tu,mau,t,m,mc:longint;<br>&nbsp; &nbsp; f,g:text;<br>function UC(x,y:longint):longint;<br>var a,b:longint;<br>begin<br>&nbsp; &nbsp; a:=abs(x);<br>&nbsp; &nbsp; b:=abs(y);<br>&nbsp; &nbsp; while a&lt;&gt;b do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; if a&gt;b then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; a:=a-b<br>&nbsp; &nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; b:=b-a;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; UC:=a;<br>end;<br>begin<br>clrscr;<br>&nbsp; &nbsp; &nbsp;assign(f,fi);assign(g,fo);<br>&nbsp; &nbsp; &nbsp;reset(f);rewrite(g);<br>&nbsp; &nbsp; &nbsp;readln(f,a,b);<br><br>&nbsp; &nbsp; &nbsp;read(f,c,d);<br><br>&nbsp; &nbsp; &nbsp;if b=d then<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;m:=b;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t:=a+b;<br>&nbsp; &nbsp; &nbsp; &nbsp;end<br>&nbsp; &nbsp; &nbsp;else<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{if (b&gt;0)and(d&gt;0) then m:=b*d;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (b&lt;0)and(d&lt;0) then m:=b*d;}<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mc:=b*d;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;t:=(a*d)+(c*b);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;m:=mc;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp;t:=t div UC(t,m);<br>&nbsp; &nbsp; &nbsp;m:=m div UC(t,m);<br>&nbsp; &nbsp; &nbsp;if m=1 then write(t) else write(g,abs(t),' ',abs(m));<br>&nbsp; &nbsp; &nbsp;close(f);close(g);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-09-23 10:23:40 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2310274609</guid>
      </item>
      <item>
         <title>M2c</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2321779818</link>
         <description><![CDATA[<div>const fi='bangst.inp';<br>&nbsp; &nbsp; &nbsp; fo='bangst.out';<br>var f,g:text;<br>&nbsp; A: array[1..20,1..20] of integer;<br>&nbsp; B: array[1..100] of integer;<br>&nbsp; m,n,i,j,d,tg: integer;<br>begin<br>&nbsp; assign(f,fi);assign(g,fo);<br>&nbsp; reset(f);rewrite(g);<br>&nbsp; readln(f,n,m);<br>&nbsp; d:=1;<br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp; for j:=1 to m do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; read(f,A[i,j]);<br>&nbsp; &nbsp; &nbsp; &nbsp; B[d]:= A[i,j];<br>&nbsp; &nbsp; &nbsp; &nbsp; d:=d+1;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; d:=d-1;<br>&nbsp; for i:=1 to d-1 do<br>&nbsp; &nbsp; for j:=i+1 to d do<br>&nbsp; &nbsp; &nbsp; if B[i] &gt; B[j] then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tg:=B[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; B[i]:=B[j];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; B[j]:=tg;<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; d:=1;<br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp; for j:=1 to m do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; A[i,j] := B[d];<br>&nbsp; &nbsp; &nbsp; &nbsp; d:=d+1;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; for j:=1 to m do write(g,a[i,j]:3);<br>&nbsp; &nbsp; &nbsp; writeln(g,'');<br>&nbsp; &nbsp; end;<br>&nbsp; readln;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-01 03:55:03 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2321779818</guid>
      </item>
      <item>
         <title>bai1</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2322569333</link>
         <description><![CDATA[<div>uses crt;<br>var n,i,kt,dem:longint;<br>&nbsp; &nbsp; x,y,m,b:longint;<br>st,st1,st2,st3:string;<br><br><br><br>function ktnt(var x:longint):longint;<br>var kt,i,kt1,j:longint;<br>begin<br>kt:=0;<br>for i:=2 to trunc(sqrt(x)) do<br>if x mod i=0 then begin<br>kt:=1;<br>break;<br>end;<br>if kt=0 then ktnt:=1<br>else ktnt:=0;<br>end;<br><br><br><br><br>{-------------------------------------------}<br>begin<br>clrscr;<br>repeat<br>clrscr;&nbsp;<br>write('Nhap n='); readln(n);<br>until (n&lt;9)&nbsp; and (n&gt;0);<br>st1[1]:='1';<br>&nbsp; for i:=2 to n do<br>&nbsp; &nbsp;st1[i]:='0';<br>&nbsp; &nbsp;st:='';<br><br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp;st:=st+st1[i];<br>&nbsp; &nbsp;val(st,x);<br><br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp;st2[i]:='9';<br>&nbsp; &nbsp;st3:='';<br><br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp;st3:=st3+st2[i];<br>&nbsp; &nbsp;val(st3,y);<br><br>dem:=0;<br>for m:=x to y do<br>{-----------------------------------------------}<br><br><br><br><br>begin<br>begin<br>&nbsp;b:=m;<br>&nbsp; repeat<br>&nbsp; &nbsp;kt:=ktnt(b);<br>&nbsp; &nbsp;if kt=0 then break<br>&nbsp; &nbsp;else b:=b div 10;<br>&nbsp; until b&lt;10;<br><br>if (ktnt(b)=1) and (b&gt;1) then<br>begin<br>&nbsp;write(m,' ');<br>&nbsp;inc(dem);<br>end;<br>end;<br>end;<br><br>writeln;<br>writeln('Co ',dem,' so sieu nguyen to co ',n,' chu so');<br>{-------------------------------------------------}<br><br><br>readln;<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-02 12:36:01 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2322569333</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2323275588</link>
         <description><![CDATA[<div>Var&nbsp; &nbsp; &nbsp; &nbsp; a,b,c:array[1..12] of real;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;f,g:text;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;th,i:integer;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tg,lx,tgtra,nho,ttl,tong:real;<br>Begin<br>&nbsp; &nbsp; Assign(f,fi);&nbsp; Reset(f);<br>&nbsp; &nbsp; Assign(g,fo);&nbsp; Rewrite(g);<br>&nbsp; &nbsp; Readln(f,tg);<br>&nbsp; &nbsp; Readln(f,lx);<br>&nbsp; &nbsp; Readln(f,th);<br>&nbsp; &nbsp; tgtra:=tg/th;<br>&nbsp; &nbsp; nho:=tg;<br>&nbsp; &nbsp; a[1]:=tg*lx/100/12;<br>&nbsp; &nbsp; For i:=2 to th do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; tg:=tg-tgtra;<br>&nbsp; &nbsp; &nbsp; &nbsp; a[i]:=tg*12/100/12;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; For i:=1 to th do<br>&nbsp; &nbsp; &nbsp; b[i]:=tgtra+a[i];<br>&nbsp; &nbsp; c[1]:=nho-b[1]+a[1];<br>&nbsp; &nbsp; for i:=2 to th do<br>&nbsp; &nbsp; &nbsp; &nbsp; c[i]:=c[i-1]-b[i]+a[i];<br>&nbsp; &nbsp; For i:=1 to th do<br>&nbsp; &nbsp; &nbsp; ttl:=ttl+b[i];<br>&nbsp; &nbsp; tong:=tgtra*6+ttl;<br>&nbsp; &nbsp; For i:=1 to th do<br>&nbsp; &nbsp; &nbsp; writeln(c[i]:1:0);<br><br>&nbsp; &nbsp; Writeln(g,'So tien vay (Vnd): ',nho:1:0);<br>&nbsp; &nbsp; Writeln(g,'Lai xuat (%/nam): ',lx:1:0);<br>&nbsp; &nbsp; Writeln(g,'Thoi han vay (thang): ',th);<br>&nbsp; &nbsp; Writeln(g,'Stt&nbsp; &nbsp; &nbsp;Lai&nbsp; &nbsp; &nbsp;Tra ngan hang&nbsp; &nbsp; &nbsp;Con lai');<br>&nbsp; &nbsp; For i:=1 to th do<br>&nbsp; &nbsp; Writeln(g,i:1,a[i]:10:0,b[i]:15:0,c[i]:15:0);<br>&nbsp; &nbsp; Writeln(g,'Tong so tien lai (Vnd): ',ttl:1:0);<br>&nbsp; &nbsp; Writeln(g,'Tong so tien ca goc lan lai: ',tong:1:0);<br>&nbsp; &nbsp; CLose(f); close(g);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-03 07:18:06 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2323275588</guid>
      </item>
      <item>
         <title></title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2328501721</link>
         <description><![CDATA[<div>Uses crt;<br>Const fi='test.inp';<br>&nbsp; &nbsp; &nbsp; fo='a.out';<br>Var i,j,n:longint;<br>&nbsp; &nbsp; &nbsp; f,g:text;<br>&nbsp; &nbsp; &nbsp; A:array[1..100,1..100] of Integer;<br>Begin<br>&nbsp;Assign(f,fi);Assign(g,fo);<br>&nbsp;Reset(f);&nbsp; &nbsp; Rewrite(g);<br><br><br>&nbsp;Readln(f,n);<br><br>&nbsp;i:=1;<br>&nbsp;while not(eof(f)) do<br>&nbsp; begin<br>&nbsp; &nbsp;j:=1;<br>&nbsp; &nbsp;while not(EOLN(f)) do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp;read(f,a[i,j]);<br>&nbsp; &nbsp; &nbsp;j:=j+1;<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp; readln(f);<br>&nbsp; &nbsp; i:=i+1;<br>&nbsp; end;<br><br><br>&nbsp;writeln(n);<br>&nbsp;for i:=1 to n do<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp;for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp;write(A[i,j]:4);<br>&nbsp; &nbsp; &nbsp;writeln;<br>&nbsp; &nbsp;end;<br>&nbsp;close(f); close(g);<br>&nbsp;readln;<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-10-06 01:15:17 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2328501721</guid>
      </item>
      <item>
         <title>Bài Tập</title>
         <author>duongnguyenngoctuan19072008</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2334719139</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1697752358/4df49fd5e18e01312763b3a6a4b78945/De_thi_chon_HSG.pdf" />
         <pubDate>2022-10-11 06:22:25 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2334719139</guid>
      </item>
      <item>
         <title>de cuong tin 8</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2361357839</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1673033732/96c03e5342f7bd83393590404e0e7c19/bai_tap_chu_de_6.docx" />
         <pubDate>2022-10-29 08:19:28 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2361357839</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP HSG TIN 8 - ĐỀ SỐ 4</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2477673847</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/4914d6ad2fccd852edd94cbc74503aec/De_4.docx" />
         <pubDate>2023-02-12 07:05:28 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2477673847</guid>
      </item>
      <item>
         <title>BÀI GIẢNG DỮ LIỆU KIỂU TỆP</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2477680994</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/c51686ef88a20343239ce1831696f189/BAI_GIANG_DU_LIEU_KIEU_TEP.jpg" />
         <pubDate>2023-02-12 07:30:54 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2477680994</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484331182</link>
         <description><![CDATA[<div>program DiemDanh;<br>uses crt;<br>var A:array[1..250] of string;<br>&nbsp; &nbsp; i,j,n:integer;<br>&nbsp; &nbsp; s,s1:string;<br><br>begin<br>&nbsp; &nbsp;clrscr;<br>&nbsp; &nbsp;write('Nhap hoc sinh: '); readln(s);<br>&nbsp; &nbsp;s:=upcase(s)+' ';<br>&nbsp; &nbsp;i:=1;<br>&nbsp; &nbsp;n:=1;<br>&nbsp; &nbsp;while i&lt;=length(s) do<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; s1:='';<br><br>&nbsp; &nbsp; &nbsp; &nbsp; while (s[i]&lt;&gt;' ') do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;s1:=s1+s[i];<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;i:=i+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; &nbsp; a[n]:=s1;<br>&nbsp; &nbsp; &nbsp; &nbsp; i:=i+1;<br>&nbsp; &nbsp; &nbsp; &nbsp; n:=n+1;<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;for i:=1 to n do write(a[i],' ');<br><br>&nbsp; &nbsp;//Kiem tra loai bo ten trung<br>&nbsp; &nbsp;for i:=1 to n-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp;for j:=i+1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if a[j]=a[i] then a[j]:='';<br>&nbsp; &nbsp;j:=0;<br>&nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp;if a[i]&lt;&gt;'' then j:=j+1;<br>&nbsp; &nbsp;writeln;<br>&nbsp; &nbsp;writeln(j);<br>&nbsp; &nbsp;readln;<br>end.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1965592738/a87e1457432208529d98232d31807844/diem_danh.pas" />
         <pubDate>2023-02-16 01:46:42 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484331182</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP HSG TIN 8 - ĐỀ SỐ 5</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484345656</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/4613d26fde250eafe34a2dadae027e0a/De_5.docx" />
         <pubDate>2023-02-16 02:02:39 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484345656</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP HSG TIN 8 - ĐỀ SỐ 7</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484353137</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/28e2b8e258de89879c02c9f0c48ca345/De_7.docx" />
         <pubDate>2023-02-16 02:11:48 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484353137</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP HSG TIN 8 - ĐỀ SỐ 8 - FULL</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484368574</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/55d0a8f16be607bb1c1d15ce7e3969cd/De_8.rar" />
         <pubDate>2023-02-16 02:27:49 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484368574</guid>
      </item>
      <item>
         <title>Bai 1 Sothanthiet</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484376330</link>
         <description><![CDATA[<div>Program sothanthiet;<br>Uses crt;<br>Const fi='sothanthiet.inp';<br>&nbsp; &nbsp; &nbsp; fo='sothanthiet.out';<br>Var a,b:longint;<br>&nbsp; &nbsp; f,g:text;<br>Function NT(x:longint):boolean;<br>Var t:longint;<br>Begin<br>&nbsp;If x&lt;2 then exit(false);<br>&nbsp;For t:=2 to trunc(sqrt(x)) do<br>&nbsp; If x mod t = 0 then exit(false);<br>&nbsp;Exit(true);<br>End;<br>Function UNTLN(n:longint):longint;<br>Var i:longint;<br>Begin<br>&nbsp;For i:=n downto 1 do<br>&nbsp; If (n mod i = 0) and (NT(i)) then Break;<br>&nbsp;UNTLN:=i;<br>End;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Read(f,a,b);<br>&nbsp;Write(g,'UNTLN tuong ung :',UNTLN(a),',',UNTLN(b));<br>&nbsp;Writeln(g);<br>&nbsp;If UNTLN(a)=UNTLN(b) then Write(g,'La cap so than thiet')<br>&nbsp;Else Write(g,'Khong than thiet');<br>&nbsp;Close(f);Close(g);<br>&nbsp;Readln;<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-02-16 02:36:47 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2484376330</guid>
      </item>
      <item>
         <title>ROBOT.PAS</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2487448303</link>
         <description><![CDATA[<div>program robot;<br><br>const fi='ROBOT.INP';<br>&nbsp; &nbsp; &nbsp; fo='ROBOT.OUT';<br>var A,B:array[0..100,0..100] of Longint;<br>&nbsp; &nbsp; n:integer;<br>&nbsp; &nbsp; s,s1:string;<br><br>procedure Nhap;<br>&nbsp; &nbsp;var f:text;<br>&nbsp; &nbsp; &nbsp; &nbsp;i,j:integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; assign(f,fi); reset(f);<br>&nbsp; &nbsp; &nbsp; readln(f,n);<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; read(f,a[i,j]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; readln(f);<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; close(f);<br>&nbsp; &nbsp;end;<br>procedure Tinh;<br>&nbsp; &nbsp;var i,j:integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; b[1,1]:=a[1,1];<br>&nbsp; &nbsp; &nbsp; for j:=2 to n do b[1,j]:=a[1,j]+b[1,j-1];<br>&nbsp; &nbsp; &nbsp; for i:=2 to n do b[i,1]:=a[i,1]+b[i-1,1];<br>&nbsp; &nbsp; &nbsp; for i:=2 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=2 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if b[i,j-1]&lt;b[i-1,j] then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; b[i,j]:=b[i,j-1]+a[i,j]<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; b[i,j]:=b[i-1,j]+a[i,j];<br>&nbsp; &nbsp; &nbsp;//Gan gia tri ngoai bien<br>&nbsp; &nbsp; &nbsp;for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;b[i,0]:=10000;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;b[i,n+1]:=10000;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp;for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; b[0,j]:=10000;<br>&nbsp; &nbsp; &nbsp; &nbsp; b[n+1,j]:=10000;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp;end;<br>procedure TimDuongDi;<br>&nbsp; &nbsp;var i,j:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp;k,m:string;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; str(b[n,n],s1);<br>&nbsp; &nbsp; &nbsp; s1:='Tong so nhien lieu: '+s1;<br><br>&nbsp; &nbsp; &nbsp; str(n,k);<br>&nbsp; &nbsp; &nbsp; s:='['+k+','+k+']';<br>&nbsp; &nbsp; &nbsp; i:=n; j:=n;<br>&nbsp; &nbsp; &nbsp; while (i&gt;0)and(j&gt;0) do<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (b[i,j-1]&lt;b[i-1,j]) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; str(i,k);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; str(j-1,m);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; j:=j-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; str(i-1,k);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; str(j,m);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i:=i-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; end ;<br>&nbsp; &nbsp; &nbsp; &nbsp; if (i&gt;0) and (j&gt;0) then &nbsp; s:='['+k+','+m+'] '+s;<br>&nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; s:='Duong di: '+s;<br>&nbsp; &nbsp;end;<br><br><br>procedure Xuat;<br>&nbsp; &nbsp;var f:text;<br>&nbsp; &nbsp; &nbsp; &nbsp;i,j:integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; assign(f,fo); rewrite(f);<br>&nbsp; &nbsp; &nbsp; writeln(f,n);<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write(f,b[i,j]:4);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeln(f);<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; writeln(f);<br>&nbsp; &nbsp; &nbsp; writeln(f,s);<br>&nbsp; &nbsp; &nbsp; writeln(f,s1);<br>&nbsp; &nbsp; &nbsp; close(f);<br>&nbsp; &nbsp;end;<br>Begin<br>&nbsp; &nbsp;nhap;<br>&nbsp; &nbsp;tinh;<br>&nbsp; &nbsp;timduongdi;<br>&nbsp; &nbsp;xuat;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-02-19 08:44:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2487448303</guid>
      </item>
      <item>
         <title>duongdi</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2491988896</link>
         <description><![CDATA[<div>program Duongditotnhat;<br>const &nbsp; fi='DUONGDI.INP';<br>&nbsp; &nbsp; &nbsp; &nbsp; fo='DUONGDI.OUT';<br>var&nbsp; &nbsp; A,B:array[1..100,1..100] of longint;<br>&nbsp; &nbsp; &nbsp; &nbsp;n:longint;<br>procedure Nhap;<br>&nbsp; &nbsp;var f:text;<br>&nbsp; &nbsp; &nbsp; &nbsp;i,j:integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; assign(f,fi); reset(f);<br>&nbsp; &nbsp; &nbsp; readln(f,n);<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if j&lt;=i then read(f,a[i,j]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; readln(f);<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; close(f);<br>&nbsp; &nbsp;end;<br>procedure Tinh;<br>&nbsp; &nbsp;var i,j:integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; b[1,1]:=a[1,1];<br>&nbsp; &nbsp; &nbsp; //Tinh cac phan tu tren duong cheo cua bang chi phi<br>&nbsp; &nbsp; &nbsp; for i:=2 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=2 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if i=j then b[i,j]:=a[i,j]+b[i-1,j-1];<br>&nbsp; &nbsp; &nbsp; //Tinh cac phan tu tren cot dau tien cua bang chi phi<br>&nbsp; &nbsp; &nbsp; for i:=2 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;b[i,1]:=a[i,1]+b[i-1,1];<br>&nbsp; &nbsp; &nbsp; //Tinh cac phan tu con lai<br>&nbsp; &nbsp; &nbsp; for i:=3 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; for j:=2 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (i&lt;&gt;j) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (b[i-1,j-1]&gt; b[i-1,j] ) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; b[i,j]:=a[i,j]+b[i-1,j-1]<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; b[i,j]:=a[i,j]+b[i-1,j];<br>&nbsp; &nbsp;end;<br><br><br>procedure Timduongdi;<br>&nbsp; &nbsp;var j,max,u,o,t:longint;<br>&nbsp; &nbsp; &nbsp; &nbsp;s,st:string;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; max:=b[n,1];s:='';o:=n;st:='';<br>&nbsp; &nbsp; for j:=2 to n do<br>&nbsp; &nbsp; &nbsp;If max&lt;b[n,j] then max:=b[n,j];<br>&nbsp; &nbsp; for j:=2 to n do<br>&nbsp; &nbsp; &nbsp;If max=b[n,j] then<br>&nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp;t:=a[n,j];<br>&nbsp; &nbsp; &nbsp; &nbsp;Val(t,s);<br>&nbsp; &nbsp; &nbsp; &nbsp;st:=st+s;<br>&nbsp; &nbsp; &nbsp; &nbsp;u:=j;<br>&nbsp; &nbsp; &nbsp; &nbsp;break;<br>&nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; while (u&gt;=3) and (o&gt;=3) do<br>&nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; If b[o-1,u-1]&gt;b[o-1,u] then<br>&nbsp; &nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; t:=a[o-1,u-1]<br>&nbsp; &nbsp; &nbsp; &nbsp; Val(t,st);<br>&nbsp; &nbsp; &nbsp; &nbsp; st:=st+s;<br>&nbsp; &nbsp; &nbsp; &nbsp; o:=o-1;<br>&nbsp; &nbsp; &nbsp; &nbsp; u:=u-1;<br>&nbsp; &nbsp; &nbsp; &nbsp;End<br>&nbsp; &nbsp; &nbsp; Else<br>&nbsp; &nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; &nbsp; t:=a[o-1,u]<br>&nbsp; &nbsp; &nbsp; &nbsp; Val(t,st);<br>&nbsp; &nbsp; &nbsp; &nbsp; st:=st+s;<br>&nbsp; &nbsp; &nbsp; &nbsp; o:=o-1;<br>&nbsp; &nbsp; &nbsp; &nbsp;End;<br>&nbsp; &nbsp;end;<br><br>procedure Xuat;<br>&nbsp; &nbsp;var f:text;<br>&nbsp; &nbsp; &nbsp; &nbsp;i,j:integer;<br>&nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; assign(f,fo); rewrite(f);<br>&nbsp; &nbsp; &nbsp; writeln(f,n);<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if j&lt;=i then write(f,a[i,j]:4);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeln(f);<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; writeln(f,'===============');<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for j:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if j&lt;=i then write(f,b[i,j]:4);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; writeln(f);<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; Writeln(f,st);<br>&nbsp; &nbsp; &nbsp; close(f);<br>&nbsp; &nbsp;end;<br>begin<br>&nbsp; &nbsp;nhap;<br>&nbsp; &nbsp;tinh;<br>&nbsp; &nbsp;timduongdi;<br>&nbsp; &nbsp;xuat;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-02-23 02:59:06 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2491988896</guid>
      </item>
      <item>
         <title>de7</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2503806241</link>
         <description><![CDATA[<div>bai1<br>Program bai1nuithanh;<br>Uses crt;<br>Var a,b:longint;<br>Function UCLN(x,y:longint):longint;<br>Var sodu:longint;<br>Begin<br>&nbsp;While y&lt;&gt;0 do<br>&nbsp; Begin<br>&nbsp; &nbsp;sodu:=x mod y;<br>&nbsp; &nbsp;x:=y;<br>&nbsp; &nbsp;y:=sodu;<br>&nbsp; End;<br>&nbsp;UCLN:=x;<br>End;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('Nhap a : = ');Readln(a);<br>&nbsp;Write('Nhap b : = ');Readln(b);<br>&nbsp;Write('UCLN cua ',a,' va ',b,' la :',UCLN(a,b);<br>&nbsp;Readln;<br>End.<br><br>bai2<br>Program bai2nuithanh;<br>Uses crt;<br>Var a,b,c,d,j,e,u,n:longint;<br>&nbsp; &nbsp; i:longint;<br>Function UCLN(x,y:longint):longint;<br>Var sodu:longint;<br>Begin<br>&nbsp;While y&lt;&gt;0 do<br>&nbsp; Begin<br>&nbsp; &nbsp;sodu:=x mod y;<br>&nbsp; &nbsp;x:=y;<br>&nbsp; &nbsp;y:=sodu;<br>&nbsp; End;<br>&nbsp;UCLN:=x;<br>End;<br>Function BCNN(x,y:longint):longint;<br>Var k:longint;<br>Begin<br>&nbsp;For k:=x to x*y do<br>&nbsp; If (k mod x = 0) and (k mod y = 0) then Break;<br>&nbsp;BCNN:=k;<br>End;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('a = ');Readln(a);<br>&nbsp;Write('b = ');Readln(b);<br>&nbsp;Write('c = ');Readln(c);<br>&nbsp;Write('d = ');Readln(d);<br>&nbsp;Write('Hai phan so vua nhap la : ',a,'/',b,' ; ',c,'/',d);<br>&nbsp;Writeln;<br>{ Write('Tong hai phan so la : ',a,'/',b,' + ',c,'/',d,' = '); }<br>&nbsp;i:=BCNN(b,d) div b;<br>&nbsp;j:=BCNN(b,d) div d;<br>&nbsp;a:=a*i;<br>&nbsp;c:=c*j;<br>&nbsp;e:=a+c;<br>&nbsp;u:=BCNN(b,d);<br>&nbsp;n:=UCLN(e,u);<br>&nbsp;e:=e div n;<br>&nbsp;u:=u div n;<br>&nbsp;Write(e,'/',u);<br>&nbsp;Readln;<br>End.<br><br>bai3<br>Program bai3nuithanh;<br>Uses crt;<br>Var A:array[1..100] of longint;<br>&nbsp; &nbsp; n,i,j,max:longint;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('Nhap N = ');Readln(n);<br>&nbsp;For i:=1 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;Write('A[',i,'] = ');<br>&nbsp; &nbsp;Readln(A[i]);<br>&nbsp; End;<br>&nbsp;max:=A[1];<br>&nbsp;For i:=2 to n do<br>&nbsp; If max&lt;A[i] then max:=A[i];<br>&nbsp;Write('Phan tu lon nhat cua day la : ',max);<br>&nbsp;Writeln;<br>&nbsp;For i:=1 to n-1 do<br>&nbsp; For j:=i+1 to n do<br>&nbsp; &nbsp;If A[i]=A[j] then A[j]:=0;<br>&nbsp;For i:=1 to n do<br>&nbsp; If A[i]&lt;&gt;0 then Write(A[i],' ');<br><br>&nbsp;Readln;<br>End.<br><br>bai4<br>Program bai4nuithanh;<br>Uses crt;<br>Var A:array[1..100] of longint;<br>&nbsp; &nbsp; n,i,j,d,tam,o:longint;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('Nhap N = ');Readln(n);<br>&nbsp;i:=1;o:=n<br>&nbsp;While n&lt;&gt;0 do<br>&nbsp; Begin<br>&nbsp; &nbsp;j:=n mod 10;<br>&nbsp; &nbsp;A[i]:=j;<br>&nbsp; &nbsp;Inc(i);<br>&nbsp; &nbsp;Inc(d);<br>&nbsp; &nbsp;n:=n div 10;<br>&nbsp; End;<br>&nbsp;For i:=1 to d-1 do<br>&nbsp; For j:=i+1 to d do<br>&nbsp; &nbsp;If A[j]&gt;A[i] then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;tam:=A[i];<br>&nbsp; &nbsp; &nbsp;A[i]:=A[j];<br>&nbsp; &nbsp; &nbsp;A[j]:=tam;<br>&nbsp; &nbsp; End;<br>&nbsp;Write('So anh lon cua ',o,' la : ');<br>&nbsp;For i:=1 to d do<br>&nbsp; Write(A[i]);<br>&nbsp;Readln;<br>End.<br><br>bai5<br>Program bai5nuithanh;<br>Uses crt;<br>Var A:array[1..100] of Real;<br>&nbsp; &nbsp; n,i,j,max,t,vt:longint;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('Nhap n = ');Readln(n);<br>&nbsp;For i:=1 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;Write('A[',i,'] = ');<br>&nbsp; &nbsp;Readln(A[i]);<br>&nbsp; End;<br>&nbsp;max:= 1;<br>&nbsp;t:= 1;<br>&nbsp;vt:= 1;<br><br>&nbsp;For i:= 2 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;If A[i]&gt;A[i-1] then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;t:=t+1;<br>&nbsp; &nbsp; &nbsp;If t&gt;max then<br>&nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp;max:=t;<br>&nbsp; &nbsp; &nbsp; &nbsp;vt:=i-max+1;<br>&nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp; End<br>&nbsp; &nbsp;Else t:=1;<br>&nbsp;End;<br><br>&nbsp;Write('Cac gia tri lien tiep tang nhieu nhat la : ');<br>&nbsp;For j:=vt to vt+max-1 do<br>&nbsp; Write(A[j]:5:1);<br>&nbsp;If max&gt;(n div 2) then Write('Kinh te phat trien')<br>&nbsp;Else Write('Kinh te chua phat trien');<br>&nbsp;Readln;<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-05 08:29:06 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2503806241</guid>
      </item>
      <item>
         <title>SSNT.Pas - Đề ôn tập 9</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2513018304</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1961354706/15fb01a002df000934583b85591e8fce/SSNT.pas" />
         <pubDate>2023-03-12 07:56:03 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2513018304</guid>
      </item>
      <item>
         <title>CHVB.pas - Đề ôn tập 9</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2513052678</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1961354706/2aaf59b73a6c3bc192e979ba5e46ab98/CHVB.pas" />
         <pubDate>2023-03-12 09:26:45 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2513052678</guid>
      </item>
      <item>
         <title>MATRAN.pas - Đề ôn tập 9</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2513066696</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1961354706/c542d80186794c3e118b7e41e5ba4041/MATRAN.PAS" />
         <pubDate>2023-03-12 09:56:30 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2513066696</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP 12 - TIN 9 BĐ 2023</title>
         <author>vosibinhdinhthcs</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2522082463</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1776521461/de9255fc514fccc957916437c37e1819/dE_TIN_9_BINH_DINH_2023.docx" />
         <pubDate>2023-03-19 09:21:52 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2522082463</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531240889</link>
         <description><![CDATA[<div>//Bai tap Hinh Chu Nhat de thi Tin 9 tinh Binh Dinh nam 2023<br>program HinhChuNhat;<br>const fi='D:\pas\De12\HinhChuNhat.Inp';<br>&nbsp; &nbsp; &nbsp; fo='D:\pas\De12\HinhChuNhat.Out';<br>var &nbsp; Dt,&nbsp; x, y,cd, cr, R:longint;<br>&nbsp; &nbsp; &nbsp; max:extended;<br>&nbsp; &nbsp; &nbsp; f:text;<br>begin<br>&nbsp; &nbsp; &nbsp;//Doc du lieu<br>&nbsp; &nbsp; &nbsp;assign(f,fi); reset(f);<br>&nbsp; &nbsp; &nbsp;readln(f,r); close(f);<br>&nbsp; &nbsp; &nbsp;//Tinh dien tich<br>&nbsp; &nbsp; <br>&nbsp;<br>&nbsp; &nbsp; &nbsp;max:=4*(sqr(r) div 2);<br>&nbsp; &nbsp; &nbsp;//Ghi ket qua<br>&nbsp; &nbsp; &nbsp;assign(f,fo); rewrite(f);<br>&nbsp; &nbsp; &nbsp;write(f,max:0:0); close(f);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-25 12:21:24 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531240889</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531533810</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://cdn.fbsbx.com/v/t59.2708-21/45246701_283666705606671_214399901218373632_n.doc/De-thi-HSG-9_2017-2018.doc?_nc_cat=101&amp;ccb=1-7&amp;_nc_sid=0cab14&amp;_nc_ohc=HI54ILTQRW4AX9r-qfm&amp;_nc_ht=cdn.fbsbx.com&amp;oh=03_AdQvW01gLlQvNnesfYofoiPuoRGkc3cnslPWN22XfsgKXw&amp;oe=6420E9DF&amp;dl=1" />
         <pubDate>2023-03-26 01:02:40 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531533810</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531534026</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323466/b7619c255d9c20be6e1c17277b3f57f3/De_thi_HSG_9_2017_2018__3_.doc" />
         <pubDate>2023-03-26 01:03:47 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531534026</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531535279</link>
         <description><![CDATA[<div>program clan;<br><br>var<br>&nbsp; n, i, max_num, num: longint;<br>&nbsp; count: array[1..100000] of longint;<br><br>begin<br>&nbsp; assign(input, 'CLAN.INP'); // Mở file input<br>&nbsp; reset(input);<br>&nbsp; readln(n);<br>&nbsp; max_num := 0;<br>&nbsp; for i := 1 to n do<br>&nbsp; begin<br>&nbsp; &nbsp; read(num);<br>&nbsp; &nbsp; count[num] := count[num] + 1; // Đếm số lượng người trong từng bộ tộc<br>&nbsp; &nbsp; if num &gt; max_num then<br>&nbsp; &nbsp; &nbsp; max_num := num;<br>&nbsp; end;<br>&nbsp; close(input); // Đóng file input<br><br>&nbsp; assign(output, 'CLAN.OUT'); // Mở file output<br>&nbsp; rewrite(output);<br>&nbsp; writeln(max_num); // Số lượng bộ tộc = số lượng phần tử lớn nhất trong mảng đếm<br>&nbsp; close(output); // Đóng file output<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-26 01:09:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531535279</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531535850</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1961354706/0c7463318eaec8a963569c2ea4ac17e3/gg.docx" />
         <pubDate>2023-03-26 01:12:19 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531535850</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531553654</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323466/785c5f0b8b40c4f26e1f44e759a6c0fa/clan.pas" />
         <pubDate>2023-03-26 02:20:00 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531553654</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531560382</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323698/d643489d79e6e7444c1f918ed07c5d0b/De_BD_2014.doc" />
         <pubDate>2023-03-26 02:46:28 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2531560382</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP THỨ 13</title>
         <author>vosibinhdinhthcs</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2539694072</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1776521461/1cbd5c460bf345ca8ccea0d83fdffe5e/De_13.pdf" />
         <pubDate>2023-03-31 10:05:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2539694072</guid>
      </item>
      <item>
         <title>Bai 3 De on tap 13</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2539749198</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1978847682/dbae51d7ec701aa6b78dbcfdc174799b/ChonNgoc.pas" />
         <pubDate>2023-03-31 11:17:21 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2539749198</guid>
      </item>
      <item>
         <title>BL3de13</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2539755611</link>
         <description><![CDATA[<div>Program BL3;<br>Const fi='BL3.INP';<br>&nbsp; &nbsp; &nbsp; fo='BL3.OUT';<br>Var n,k,d,i,o,j:longint;<br>&nbsp; &nbsp; s,st:string;<br>&nbsp; &nbsp; f,g:text;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Readln(f,n,k);<br>&nbsp;Readln(f,s);<br>&nbsp;i:=1;d:=0;<br>&nbsp;While i&lt;=k do<br>&nbsp; Begin<br>&nbsp; &nbsp;Readln(f,st);<br>&nbsp; &nbsp;For j:=n downto 2 do<br>&nbsp; &nbsp; If S[j]=St[length(st)] then<br>&nbsp; &nbsp; &nbsp;For o:=j-1 downto 1 do<br>&nbsp; &nbsp; &nbsp; If S[o]=St[1] then Inc(d);<br>&nbsp; &nbsp;Inc(i);<br>&nbsp; End;<br>&nbsp;Write(g,d);<br>&nbsp;Close(f);Close(g);<br>End.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-03-31 11:25:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2539755611</guid>
      </item>
      <item>
         <title>BL4de13</title>
         <author>nhanngo150929</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540699348</link>
         <description><![CDATA[<div>Program Bl4;<br>Uses crt;<br>Var A:array[1..100] of longint;<br>&nbsp; &nbsp; n,i,j,s,max,k:longint;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('Nhap n = ');Readln(n);<br>&nbsp;For i:=1 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;Write('A[',i,'] = ');Readln(A[i]);<br>&nbsp; End;<br>&nbsp;max:=A[1];<br>&nbsp;For i:=1 to n do<br>&nbsp; For j:=i+1 to n do<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; s:=0;<br>&nbsp; &nbsp; For k:=i to j do<br>&nbsp; &nbsp; &nbsp;s:=s+A[k];<br>&nbsp; &nbsp; If s&gt;max then max:=s;<br>&nbsp; &nbsp;End;<br>&nbsp;Write(max);<br>&nbsp;Readln;<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-01 15:48:20 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540699348</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540878846</link>
         <description><![CDATA[<div>Function DN(x:longint):longint;<br>Var s,s1:string;<br>&nbsp; &nbsp; i,c:longint;<br>Begin<br>&nbsp;s1:='';<br>&nbsp;Str(x,s);<br>&nbsp;For i:=length(s) downto 1 do<br>&nbsp; s1:=s1+s[i];<br>&nbsp;Val(s1,c);<br>&nbsp;DN:=c;<br>End;</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-02 00:54:42 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540878846</guid>
      </item>
      <item>
         <title>Bai1longan1415</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540895757</link>
         <description><![CDATA[<div>Program bai1;<br>Uses crt;<br>Var n,t,d:longint;<br>Function DN(x:longint):longint;<br>Var s,s1:string;<br>&nbsp; &nbsp; i,c:longint;<br>Begin<br>&nbsp;s1:='';<br>&nbsp;Str(x,s);<br>&nbsp;For i:=length(s) downto 1 do<br>&nbsp; s1:=s1+s[i];<br>&nbsp;Val(s1,c);<br>&nbsp;DN:=c;<br>End;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('Nhap n = ');Readln(n);<br>&nbsp;d:=0;<br>&nbsp;While n&lt;&gt;DN(n) do<br>&nbsp; Begin<br>&nbsp; &nbsp;n:=n+DN(n);<br>&nbsp; &nbsp;Inc(d);<br>&nbsp; End;<br>&nbsp;Write('So doi xung : = ',n);<br>&nbsp;Writeln;<br>&nbsp;Write('So lan bien doi : = ',d);<br>&nbsp;Readln;<br>End.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-02 02:02:57 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540895757</guid>
      </item>
      <item>
         <title>Bai2longan1415</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540895889</link>
         <description><![CDATA[<div>Program bai2;<br>Uses crt;<br>Var s,st,u:string;<br>&nbsp; &nbsp; d,i,t,min,j:longint;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Readln(s);<br>&nbsp;i:=2;d:=0;t:=1;st:='';<br>&nbsp;While i&lt;=length(s) do<br>&nbsp; Begin<br>&nbsp; &nbsp;If S[i] in ['A'..'Z'] then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;Inc(i);<br>&nbsp; &nbsp; &nbsp;t:=t*d;<br>&nbsp; &nbsp; &nbsp;d:=0;<br>&nbsp; &nbsp; End;<br>&nbsp; &nbsp;If S[i] in ['1'..'9'] then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;Inc(d);<br>&nbsp; &nbsp; &nbsp;Inc(i);<br>&nbsp; &nbsp; End;<br>&nbsp; End;<br>&nbsp;Write(t);<br>&nbsp;i:=2;st:=st+s[1];Val(s[2],min);<br>&nbsp;While i&lt;=length(s) do<br>&nbsp; Begin<br>&nbsp; &nbsp;If S[i] in ['A'..'Z'] then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;Str(min,u);<br>&nbsp; &nbsp; &nbsp;st:=st+u;<br>&nbsp; &nbsp; &nbsp;st:=st+s[i];<br>&nbsp; &nbsp; &nbsp;Val(s[i+1],min);<br>&nbsp; &nbsp; &nbsp;Inc(i);<br>&nbsp; &nbsp; End;<br>&nbsp; &nbsp;If S[i] in ['1'..'9'] then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;Val(s[i],j);<br>&nbsp; &nbsp; &nbsp;If min&gt;j then min:=j;<br>&nbsp; &nbsp; &nbsp;Inc(i);<br>&nbsp; &nbsp; End;<br>&nbsp; End;<br>&nbsp;Writeln;<br>&nbsp;Write(st);<br>&nbsp;Readln;<br>End.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-02 02:03:33 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540895889</guid>
      </item>
      <item>
         <title>Bai3longan1415</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540895992</link>
         <description><![CDATA[<div>Program bai3;<br>Const fi='bai3.inp';<br>Var a,b,c,n,i,j,k,d:longint;<br>&nbsp; &nbsp; f:text;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Readln(f,a,b,c);<br>&nbsp;Read(f,n);<br>&nbsp;If (a*a=b*b+c*c) or (b*b=a*a+c*c) or (c*c=a*a+b*b) then<br>&nbsp; Write('Cau a : ',a,' ',b,' ',c,' la bo ba Pytago')<br>&nbsp;Else Write('Cau a : ',a,' ',b,' ',c,' khong la bo ba Pytago');<br>&nbsp;Writeln;<br>&nbsp;Write('Cau b : ');d:=0;<br>&nbsp;For i:=3 to n do<br>&nbsp; For j:=3 to n do<br>&nbsp; &nbsp;For k:=3 to n do<br>&nbsp; &nbsp; If (i*i=j*j+k*k) or (j*j=i*i+k*k) or (k*k=i*i+j*j) then Inc(d);<br>&nbsp;Write(d div 6);<br>&nbsp;Close(f);<br>&nbsp;Readln;<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-02 02:03:55 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540895992</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540896083</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323698/460ce68bf8f863e27b98c6344ecb929e/HSG_tinh_Long_An_20142015.doc" />
         <pubDate>2023-04-02 02:04:18 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540896083</guid>
      </item>
      <item>
         <title>Bai1.pas</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540896286</link>
         <description><![CDATA[<div>program bai1;<br>uses crt;<br>var n,x,i,k,tong:longint;<br>&nbsp; &nbsp; t:longint = 1;<br>function daoso(n:longint):longint;<br>var<br>&nbsp; m,r:longint;<br>begin<br>&nbsp; m:=n;<br>&nbsp; r:=0;<br>&nbsp; while m&gt;0 do<br>&nbsp; begin<br>&nbsp; &nbsp; r:=r*10+m mod 10;<br>&nbsp; &nbsp; m:=m div 10;<br>&nbsp; end;<br>&nbsp; daoso:=r;<br>end;<br>begin<br>&nbsp; clrscr;<br>&nbsp; write('nhap so N:'); readln(n);<br>&nbsp; &nbsp;k:=daoso(n);<br>&nbsp; &nbsp; repeat<br>&nbsp; &nbsp; &nbsp;tong:=n+k;<br>&nbsp; &nbsp; &nbsp;if tong=daoso(tong) then<br>&nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; writeln('so doi xung la = ',tong);<br>&nbsp; &nbsp; &nbsp; writeln('so lan bien doi = ',t);<br>&nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; n:=tong;<br>&nbsp; &nbsp; &nbsp; k:=daoso(n);<br>&nbsp; &nbsp; &nbsp; t:=t+1;<br>&nbsp; &nbsp;until tong=daoso(tong);<br>&nbsp;readln;<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-02 02:05:05 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540896286</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540906943</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1972241552/06cd4ae8c1a8d3438b0920a585b8f090/De_thi_HSG9_2012_2013.doc" />
         <pubDate>2023-04-02 02:45:54 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540906943</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907070</link>
         <description><![CDATA[<div>hihihahhaha</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1972241552/093e0c4d7968798945f751fc97861c72/De_thi_HSG_9_2017_2018.doc" />
         <pubDate>2023-04-02 02:46:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907070</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907409</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1972241552/44146d95b800a8f61aa25bd010877eb0/De_thi_HSG_9_nam_2015___2016.doc" />
         <pubDate>2023-04-02 02:47:41 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907409</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907484</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1972241552/117dee32932c6ab090fa60b4238058a3/De_thi_HSG_9_nam_2014___2015.doc" />
         <pubDate>2023-04-02 02:47:59 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907484</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907589</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1972241552/59b4bfe54354b0ec9f9effdff2be7c35/De_thi_HSG_9_nam_2013___2014_.doc" />
         <pubDate>2023-04-02 02:48:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540907589</guid>
      </item>
      <item>
         <title>Bai2quangbinh1415</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540920280</link>
         <description><![CDATA[<div>Program bai2;<br>Uses crt;<br>Const fi='SOHH.INP';<br>&nbsp; &nbsp; &nbsp; fo='SOHH.OUT';<br>Var n,p,q,d,i:longint;<br>&nbsp; &nbsp; f,g:text;<br>Function TCU(x:longint):longint;<br>Var u,t:longint;<br>Begin<br>&nbsp;t:=0;<br>&nbsp;For u:=1 to x do<br>&nbsp; If x mod u = 0 then t:=t+u;<br>&nbsp;TCU:=t;<br>End;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Readln(f,p,q);<br>&nbsp;d:=0;<br>&nbsp;For i:=p to q do<br>&nbsp; If TCU(i)=i*2 then inc(d);<br>&nbsp;Write(g,d);<br>&nbsp;Writeln(g);<br>&nbsp;For i:=p to q do<br>&nbsp; If TCU(i)=i*2 then Write(g,i,' ');<br>&nbsp;Close(f);Close(g);<br>&nbsp;Readln;<br>End.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-02 03:37:47 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540920280</guid>
      </item>
      <item>
         <title>Bai1quangbinh1415</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540920393</link>
         <description><![CDATA[<div>Program bai1quangbinh1415;<br>Const fi='SAPXEP.INP';<br>&nbsp; &nbsp; &nbsp; fo='SAPXEP.OUT';<br>Var n,i,j:longint;<br>&nbsp; &nbsp; s,tam:string;<br>&nbsp; &nbsp; A:array[1..100] of string;<br>&nbsp; &nbsp; f,g:text;<br>Function DEM(x:string):longint;<br>Var d,i:longint;<br>Begin<br>&nbsp;d:=0;<br>&nbsp;For i:=1 to length(x) do<br>&nbsp; If x[i] in ['1'..'9'] then inc(d);<br>&nbsp;DEM:=d;<br>End;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Readln(f,n);<br>&nbsp;i:=1;<br>&nbsp;While i&lt;=n do<br>&nbsp; Begin<br>&nbsp; &nbsp;Readln(f,s);<br>&nbsp; &nbsp;A[i]:=s;<br>&nbsp; &nbsp;Inc(i);<br>&nbsp; End;<br>&nbsp;For i:=1 to n-1 do<br>&nbsp; For j:=i+1 to n do<br>&nbsp; &nbsp;If DEM(A[i])&gt;DEM(A[j]) then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;tam:=A[i];<br>&nbsp; &nbsp; &nbsp;A[i]:=A[j];<br>&nbsp; &nbsp; &nbsp;A[j]:=tam;<br>&nbsp; &nbsp; End;<br>&nbsp;For i:=1 to n do<br>&nbsp; Writeln(g,A[i]);<br>&nbsp;Close(f);Close(g);<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-02 03:38:11 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2540920393</guid>
      </item>
      <item>
         <title>Bai001_De bai</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542049275</link>
         <description><![CDATA[<div>Bai001_De bai</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/3b84c8c202e70dc2d5f831332d62b187/Bai001_De.docx" />
         <pubDate>2023-04-03 10:26:27 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542049275</guid>
      </item>
      <item>
         <title>Bai002_De bai</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542068260</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/387f4ce53179f963bedf18948145cee9/Bai002_De.docx" />
         <pubDate>2023-04-03 10:52:07 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542068260</guid>
      </item>
      <item>
         <title>Bai003_De bai</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542078942</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/e66b72119e78bd7612e92af7477a3016/Bai003_De.docx" />
         <pubDate>2023-04-03 11:07:11 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542078942</guid>
      </item>
      <item>
         <title>Khôi Bài 001</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542090671</link>
         <description><![CDATA[<div>Bai001.pas</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2012263907/7a29498645e4e18f289da648f57711ff/Bai001_pas.pas" />
         <pubDate>2023-04-03 11:24:07 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542090671</guid>
      </item>
      <item>
         <title>Bài 3 chưa nộp </title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542116271</link>
         <description><![CDATA[<div>Program Bai003;<br>Uses crt;<br>Const fi='Bai003.INP';<br>&nbsp; &nbsp; &nbsp; fo='Bai003.OUT';<br>Var n,i,d,max,s:Longint;<br>&nbsp; &nbsp; f,g:Text;<br>Function DTSNT(x:Longint):Longint;<br>Var t,d:longint;<br>Begin<br>&nbsp;t:=2;d:=0;<br>&nbsp;While x&gt;1 do<br>&nbsp; Begin<br>&nbsp; &nbsp;If x mod t = 0 then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;Inc(d);<br>&nbsp; &nbsp; &nbsp;x:= x div t;<br>&nbsp; &nbsp; End<br>&nbsp; &nbsp;Else Inc(t);<br>&nbsp; End;<br>&nbsp;DTSNT:=d;<br>End;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Readln(f,n);<br>&nbsp;max:=0;<br>&nbsp;For i:=1 to n do<br>&nbsp; If DTSNT(i)&gt;max then<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; max:=DTSNT(i);<br>&nbsp; &nbsp; s:=i;<br>&nbsp; &nbsp;End;<br>&nbsp;Write(g,s);<br>&nbsp;Close(f);Close(g);<br>End.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-03 11:54:17 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542116271</guid>
      </item>
      <item>
         <title>Bai002-Khôi</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542116704</link>
         <description><![CDATA[<div>Bai002.pas</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2012263907/ad45d3d5d0c9e3bcdea0120efc4a02f4/Bai002.pas" />
         <pubDate>2023-04-03 11:54:51 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542116704</guid>
      </item>
      <item>
         <title>Nhân Bai003</title>
         <author>nhanngo150929</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542229759</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1571973757/9dc30ed57973b1090e985dbdd5df59e6/Bai003.pas" />
         <pubDate>2023-04-03 13:31:20 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2542229759</guid>
      </item>
      <item>
         <title>Khôi Bai003</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2545030555</link>
         <description><![CDATA[<div>Bai003</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1855644516/19f3f1bb8e3efdf961c680f9b738b5f9/Bai003.pas" />
         <pubDate>2023-04-05 13:51:17 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2545030555</guid>
      </item>
      <item>
         <title>De on tap 15</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554272090</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/abf844624ef2a9af91c7a457969f06b8/Hinh_chu_nhat_nguyen_to.pdf" />
         <pubDate>2023-04-14 07:46:32 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554272090</guid>
      </item>
      <item>
         <title>Khôi đề 14</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554354640</link>
         <description><![CDATA[<div>Khôi nè de14<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1752595575/96f9c4ddfdf9a531e95d7f6ce8d27d78/Khoi_de14.rar" />
         <pubDate>2023-04-14 09:30:02 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554354640</guid>
      </item>
      <item>
         <title>NHAN_DE14</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554355564</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323698/d5a8b318dfaf3eac3e60273efe6de5bb/NHAN_DE14.rar" />
         <pubDate>2023-04-14 09:31:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554355564</guid>
      </item>
      <item>
         <title>Nguyên đề 14</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554355597</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1972241552/2c37cfbfb95cd0ea074879cb4a9d7497/NGUYEN_DE14.rar" />
         <pubDate>2023-04-14 09:31:26 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554355597</guid>
      </item>
      <item>
         <title>PREC</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554365668</link>
         <description><![CDATA[<div>Program PREC;<br>Const fi='PREC.INP';<br>&nbsp; &nbsp; &nbsp; fo='PREC.OUT';<br>Var A:array[1..100,1..100] of longint;<br>&nbsp; &nbsp; m,n,i,j,d,k,l:longint;<br>&nbsp; &nbsp; f,g:text;<br>Function NT(x:longint):boolean;<br>Var t:longint;<br>Begin<br>&nbsp;If x&lt;2 then exit(false);<br>&nbsp;For t:=2 to trunc(sqrt(x)) do<br>&nbsp; If x mod t = 0 then exit(false);<br>&nbsp;Exit(true);<br>End;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Readln(f,m,n);<br>&nbsp;For i:=1 to m do<br>&nbsp; Begin<br>&nbsp; &nbsp;For j:=1 to n do<br>&nbsp; &nbsp; Read(f,A[i,j]);<br>&nbsp; &nbsp;Readln(f);<br>&nbsp; End;<br>&nbsp;For i:=1 to m do<br>&nbsp; For j:=1 to n do<br>&nbsp; &nbsp;If NT(A[i,j]) then A[i,j]:=1<br>&nbsp; &nbsp;Else A[i,j]:=0;<br>&nbsp;d:=0;<br>&nbsp;For i:=1 to m-1 do<br>&nbsp; For j:=1 to n-1 do<br>&nbsp; &nbsp;For k:=i+1 to m do<br>&nbsp; &nbsp; For l:=j+1 to n do<br>&nbsp; &nbsp; &nbsp;If A[i,j]+A[k,j]+A[i,l]+A[k,l]&gt;=3 then Inc(d);<br>&nbsp;Write(g,d);<br>&nbsp;Close(f);Close(g);<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-14 09:45:45 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2554365668</guid>
      </item>
      <item>
         <title>De on tap 16</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2555186308</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/515ab97891cc9bd551655ca445bd626b/dap_an_de_thi_hsg_tin_loc_lop_9_dong_thap_2018___Copy.docx" />
         <pubDate>2023-04-15 07:07:21 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2555186308</guid>
      </item>
      <item>
         <title>NHAN_DE17</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2555671706</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323698/b0e43fddf7358a6c134c8cc19f34a45e/NHAN_DE17.rar" />
         <pubDate>2023-04-16 09:46:01 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2555671706</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2556307014</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323698/4d0edea651a21d92a55fc9da59c6c206/CAC_CACH_CHUYEN_DOI_GIUA_CAC_HE_CO_SO.docx" />
         <pubDate>2023-04-17 03:29:29 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2556307014</guid>
      </item>
      <item>
         <title>De on tap 18</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558139201</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/442b7178145ae98333f58d0c34810488/DE_LUYEN_HSG___Copy.docx" />
         <pubDate>2023-04-18 06:40:29 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558139201</guid>
      </item>
      <item>
         <title>De on tap 19</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558157635</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/9b6644f730b02dc041fdef2da1a643f5/Bai010_De19.doc" />
         <pubDate>2023-04-18 06:54:18 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558157635</guid>
      </item>
      <item>
         <title>De on tap 20</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558168220</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/81e2498b43d9905f8ba8fcdd55bd0484/De_thi_HSG_Tin_8.doc" />
         <pubDate>2023-04-18 07:02:28 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558168220</guid>
      </item>
      <item>
         <title>De on tap 21</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558174011</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/2ad94a2afde3ea7da63c962d538a8905/De_on_tap_021.doc" />
         <pubDate>2023-04-18 07:06:54 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558174011</guid>
      </item>
      <item>
         <title>NHAN_DE18</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558279919</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323698/9fb627c909fd1dbdf3110f2769bbf06b/NHAN_DE18.rar" />
         <pubDate>2023-04-18 08:42:18 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558279919</guid>
      </item>
      <item>
         <title>bài 2 đề 19</title>
         <author>nhatnguyennguyencao09</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558622090</link>
         <description><![CDATA[<div>uses crt;<br>var f,g:text;<br>&nbsp; &nbsp; i,m,n:longint;<br>&nbsp; &nbsp; s:string;<br>begin<br>clrscr;<br>&nbsp; &nbsp;assign(f,'cau2.inp');<br>&nbsp; &nbsp;reset(f);<br>&nbsp; &nbsp;readln(f,n);<br>&nbsp; &nbsp;close(f);<br>&nbsp; &nbsp;assign(g,'cau2.out');<br>&nbsp; &nbsp;rewrite(g);<br>&nbsp; &nbsp; &nbsp; repeat<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(i);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;str(i,s);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;inc(m,length(s));<br>&nbsp; &nbsp; &nbsp; until m&gt;=n;<br>&nbsp; &nbsp; &nbsp; writeln(g,s[abs(n-(m-length(s)))],' ',s);<br>&nbsp; &nbsp;close(g);<br>readln<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-18 13:39:33 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2558622090</guid>
      </item>
      <item>
         <title>xâu đảo </title>
         <author>nhatnguyennguyencao09</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2560225155</link>
         <description><![CDATA[<div>Program xaudao<br>uses crt;<br>var s:string;<br>&nbsp; &nbsp; x,y,z,t:byte;<br>begin<br>&nbsp; write('Nhap vao mot xau: ');<br>&nbsp; readln(s);<br>&nbsp; z:=length(s);<br>&nbsp; for y:=length(s) downto 1 do<br>&nbsp; begin<br>&nbsp; &nbsp; if ((s[y]=' ')or(y=1)) then<br>&nbsp; &nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for t:=y to z do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; write(s[t]);<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; z:=y<br>&nbsp; &nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; write(' ');<br>&nbsp; end;<br>&nbsp; readln;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-04-19 13:53:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2560225155</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2613744189</link>
         <description><![CDATA[<div>Program Similar;<br>Const fi='Similar.INP';<br>&nbsp; &nbsp; &nbsp; fo='Similar.OUT';<br>Var l,r,i,a,max,h:longint;<br>&nbsp; &nbsp; f,g:text;<br>Function TCS(x:longint):longint;<br>Var t,du:longint;<br>Begin<br>&nbsp;t:=0;<br>&nbsp;While x&lt;&gt;0 do<br>&nbsp; Begin<br>&nbsp; &nbsp;du:=x mod 10;<br>&nbsp; &nbsp;x:=x div 10;<br>&nbsp; &nbsp;t:=t+du;<br>&nbsp; End;<br>&nbsp;TCS:=t;<br>End;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Read(f,l,r);<br>&nbsp;a:=l;max:=0;<br>&nbsp;i:=r;<br>&nbsp;While i&gt;=a do<br>&nbsp; Begin<br>&nbsp; &nbsp;If TCS(i)=TCS(a) then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;h:=i-a;<br>&nbsp; &nbsp; &nbsp;If h&gt;max then max:=h;<br>&nbsp; &nbsp; &nbsp;Inc(a);<br>&nbsp; &nbsp; &nbsp;i:=r;<br>&nbsp; &nbsp; End<br>&nbsp; &nbsp;Else i:=i-1;<br>&nbsp; End;<br>&nbsp;Write(g,max);<br>&nbsp;Close(f);Close(g);<br>End.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-04 02:13:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2613744189</guid>
      </item>
      <item>
         <title>PHÂN RÃ NGUYÊN TỐ</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619642207</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/c80ae31fe72853f6dad6ec8bfcab5eb4/PRNGTO.docx" />
         <pubDate>2023-06-10 00:13:04 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619642207</guid>
      </item>
      <item>
         <title>BA ƯỚC</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619652985</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/aa3c8cc8440f0232efde29fa3f41b2e6/BaUoc.docx" />
         <pubDate>2023-06-10 00:52:37 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619652985</guid>
      </item>
      <item>
         <title>CODE PHÂN RÃ NGUYÊN TỐ</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619665488</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/ebe83409e033ceb6f93dd15d853959cd/PRNGTO.pas" />
         <pubDate>2023-06-10 01:32:15 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619665488</guid>
      </item>
      <item>
         <title>Phân Rã Nguyên Tố</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619682184</link>
         <description><![CDATA[<div>Program PRNGTO;<br>Const fi='PRNGTO.INP';<br>&nbsp; &nbsp; &nbsp; fo='PRNGTO.OUT';<br>Var n,i1,i2,i3,t:Int64;<br>&nbsp; &nbsp; f,g:Text;<br>Function NT(x:Int64):boolean;<br>Var t:Int64;<br>Begin<br>&nbsp;If x&lt;2 then exit(false);<br>&nbsp;t:=2;<br>&nbsp;While t&lt;=trunc(sqrt(x)) do<br>&nbsp; Begin<br>&nbsp; &nbsp;If x mod t = 0 then exit(false)<br>&nbsp; &nbsp;Else Inc(t);<br>&nbsp; End;<br>&nbsp;Exit(true);<br>End;<br>Begin<br>&nbsp; Assign(f,fi);Reset(f);<br>&nbsp; Assign(g,fo);Rewrite(g);<br>&nbsp; Read(f,n);<br>&nbsp; If NT(n) then Write(g,n);<br>&nbsp; t:=n-2;<br>&nbsp; i1:=0;i2:=0;i3:=0;<br>&nbsp; While Not(NT(t)) do t:=t-1;<br>&nbsp; i1:=t;<br>&nbsp; t:=n-i1;<br>&nbsp; If NT(t-1) and not(nt(t)) then t:=t-2;<br>&nbsp; While Not(NT(t)) do t:=t-1;<br>&nbsp; i2:=t;<br>&nbsp; t:=n-i1-i2;<br>&nbsp; If t&gt;0 then i3:=t;<br>&nbsp; If i3=0 then Write(g,i1,' ',i2)<br>&nbsp; Else Write(g,i1,' ',i2,' ',i3);<br>&nbsp; Close(f);Close(g);<br>End.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-10 02:23:28 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2619682184</guid>
      </item>
      <item>
         <title>Bài BA ƯỚC của Nhân</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2626140859</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1989323698/87550654c9aa6850131dcd9d12c777cc/BAUOC.pas" />
         <pubDate>2023-06-18 00:26:15 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2626140859</guid>
      </item>
      <item>
         <title>BA ƯỚC .PAS </title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2626142138</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/6d44662bfb0adada09369aa2114269be/BaUoc.pas" />
         <pubDate>2023-06-18 00:35:42 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2626142138</guid>
      </item>
      <item>
         <title>DUONGDI</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2626161973</link>
         <description><![CDATA[<div>Program DUONGDI;<br>Const fi='DUONGDI.INP';<br>&nbsp; &nbsp; &nbsp; fo='DUONGDI.OUT';<br>Var A,B:array[1..10,1..10] of longint;<br>&nbsp; &nbsp; A:array[1..100] of longint;<br>&nbsp; &nbsp; m,n,i,j,min,i1 :longint;<br>&nbsp; &nbsp; f,g:text;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Read(f,m,n);<br>&nbsp;For i:=1 to m do<br>&nbsp; Begin<br>&nbsp; &nbsp;For j:=1 to n do<br>&nbsp; &nbsp; Read(f,A[i,j]);<br>&nbsp; &nbsp;Readln(f);<br>&nbsp; End;<br>&nbsp;For i:=1 to m do<br>&nbsp; B[i,1]:=A[i,1];<br>&nbsp;For j:=2 to n do<br>&nbsp; For i:=1 to m do<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; If i=1 then B[i,j]:=A[i,j]+B[i+1,j-1]<br>&nbsp; &nbsp; Else<br>&nbsp; &nbsp; &nbsp;If i=m then B[i,j]:=A[i,j]+B[i-1,j-1]<br>&nbsp; &nbsp; &nbsp;Else<br>&nbsp; &nbsp; &nbsp; If A[i+1,j-1]&gt;A[i-1,j-1] then B[i,j]:=A[i,j]+B[i-1,j-1]<br>&nbsp; &nbsp; &nbsp; Else B[i,j]:=A[i,j]+B[i+1,j-1];<br>&nbsp; &nbsp;End;<br>&nbsp;min:=B[1,n];<br>&nbsp;For i:=2 to m do<br>&nbsp; If B[i,n]&lt;min then min:=B[i,n];<br>&nbsp;Write(g,min);<br>&nbsp;Writeln(g);<br>&nbsp;For i:=1 to m do<br>&nbsp; If B[i,n]=min then<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; A[1]:=i;<br>&nbsp; &nbsp; A[2]:=n;<br>&nbsp; &nbsp; Break;<br>&nbsp; &nbsp;End;<br>&nbsp;i1:=3;<br>&nbsp;While i1&lt;=n+n do<br>&nbsp; Begin<br>&nbsp; &nbsp;For j:=n-1 downto 1 do<br>&nbsp; &nbsp; For i:=m downto 1 do<br><br><br>&nbsp;Close(f);Close(g);<br>End.<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-06-18 02:49:27 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2626161973</guid>
      </item>
      <item>
         <title>HCN</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2676462508</link>
         <description><![CDATA[<div>Program HCN;<br>Const fi='HCN.INP';<br>&nbsp; &nbsp; &nbsp; fo='HCN.OUT';<br>Var A:array[1..100,1..100] of longint;<br>&nbsp; &nbsp; n,m,p,q,i,j,s,smax,k,t,u,o,e,h,s2:longint;<br>&nbsp; &nbsp; f,g:text;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Readln(f,n,m,p,q);<br>&nbsp;For i:=1 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;For j:=1 to m do<br>&nbsp; &nbsp; Read(f,A[i,j]);<br>&nbsp; &nbsp;Readln(f);<br>&nbsp; End;<br>&nbsp;s:=0;smax:=0;<br>&nbsp;For i:=1 to n-p+1 do<br>&nbsp; For h:=1 to m-q+1 do<br>&nbsp; Begin<br>&nbsp; &nbsp;s:=0;<br>&nbsp; &nbsp;For k:=i to i+p-1 do<br>&nbsp; &nbsp; For t:=h to h+q-1 do<br>&nbsp; &nbsp; &nbsp;s:=s+A[k,t];<br>&nbsp; &nbsp;For e:=1 to n-p+1 do<br>&nbsp; &nbsp; For j:=1 to m-q+1 do<br>&nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; s2:=0;<br>&nbsp; &nbsp; &nbsp; For u:=e to e+p-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp;For o:=j to j+q-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; s2:=s2+A[u,o];<br>&nbsp; &nbsp; &nbsp; If s+s2&gt;smax then smax:=s+s2;<br>&nbsp; &nbsp; &nbsp;End;<br><br>&nbsp; End;<br>&nbsp;Write(g,smax);<br>&nbsp;Close(f);Close(g);<br>End.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-29 09:42:10 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2676462508</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2676463118</link>
         <description><![CDATA[<div>program haihinhnhat;<br><br>var a,b:array[1..100,1..100] of longint;<br>&nbsp; &nbsp; n,m,q,p,i,j,tong1,tong2,k,l,max,x,y,z,w,toadoi, toadoj,toadox, toadoy,ii,jj:longint;<br>&nbsp; &nbsp; f,g:text;<br>begin<br>&nbsp; assign(f,'hcn.inp'); reset(f);<br>&nbsp; assign(g,'hcn.out'); rewrite(g);<br>&nbsp; readln(f,n,m,p,q);<br>&nbsp; //Nhap mang<br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; for j:=1 to m do<br>&nbsp; &nbsp; &nbsp; &nbsp; read(f,a[i,j]);<br>&nbsp; &nbsp; &nbsp; readln(f);<br>&nbsp; &nbsp; end;<br>&nbsp; &nbsp; max:=0;<br><br>&nbsp; &nbsp;//Xet hinh so 1<br>&nbsp; &nbsp;for i:=1 to n-p+1 do<br>&nbsp; &nbsp; for j:=1 to m-q+1 do<br>&nbsp; &nbsp; &nbsp; begin<br>&nbsp; &nbsp; &nbsp; //Tao bang phu,o dang xet =1, con cac o khac thi =0<br>&nbsp; &nbsp; &nbsp; &nbsp;for ii:=1 to n do<br>&nbsp; &nbsp; &nbsp; &nbsp; for jj:=1 to m do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; b[ii,jj]:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp;b[i,j]:=1;<br><br><br>&nbsp; &nbsp; &nbsp; &nbsp;tong1:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp;//tinh tong cac o tren hinh so 1<br>&nbsp; &nbsp; &nbsp; &nbsp;for k:=i to i+p-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for l:=j to j+q-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tong1:=tong1+A[k,l];<br><br>&nbsp; &nbsp; &nbsp; &nbsp;//tinh tong cac o cua cac hinh chu nhat con lai<br>&nbsp; &nbsp; &nbsp; &nbsp;for x:=1 to n-p+1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for y:=1 to m-q+1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; tong2:=0;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if b[x,y]&lt;&gt;1 then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; for z:=x to x+p-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;for w:=y to y+q-1 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tong2:=tong2+a[z,w];<br><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if tong1+tong2&gt;max then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;begin<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;max:=tong1+tong2;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;toadoi:=i;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;toadoj:=j;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;toadox:=x;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;toadoy:=y;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end;<br><br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; writeln(g,max);<br>&nbsp; &nbsp; writeln(g,toadoi,toadoj,' ',toadox,toadoy);<br>&nbsp; &nbsp; close(f);<br>&nbsp; &nbsp; close(g);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-08-29 09:43:19 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2676463118</guid>
      </item>
      <item>
         <title>Đề 2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703647833</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2139117254/268aa754c8b81d69fe5fb170a80496ae/DE_HSG_VINH_PHUC_2122.doc" />
         <pubDate>2023-09-14 06:37:45 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703647833</guid>
      </item>
      <item>
         <title>Bai1de2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703899165</link>
         <description><![CDATA[<div>Program pytago;<br>Uses crt;<br>Var x,a,b,c,m,n:Int64;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('Nhap x : ');Readln(x);<br>&nbsp;c:=0;<br>&nbsp;a:=3;<br>&nbsp;m:=x div 2 +1;<br>&nbsp;While a&lt;m do<br>&nbsp; Begin<br>&nbsp; &nbsp;b:=a+1;<br>&nbsp; &nbsp;n:=(x-a) div 2+1;<br>&nbsp; &nbsp;While b&lt;n do<br>&nbsp; &nbsp; If sqr(a)+sqr(b)=sqr(x-a-b) then<br>&nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; Inc(c);<br>&nbsp; &nbsp; &nbsp; b:=n;<br>&nbsp; &nbsp; &nbsp;End<br>&nbsp; &nbsp; Else Inc(b);<br>&nbsp; &nbsp;If c=1 then a:=m<br>&nbsp; &nbsp;Else Inc(a);<br>&nbsp; End;<br>&nbsp;Write(c);<br>&nbsp;Readln;<br>End.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2139111142/db671648cc8528ec0b4d80e474136204/pytago.exe" />
         <pubDate>2023-09-14 09:38:04 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703899165</guid>
      </item>
      <item>
         <title>Bai2de2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703899919</link>
         <description><![CDATA[<div>Program PROMATE;<br>Uses crt;<br>Var A,B:array[1..100] of Real;<br>&nbsp; &nbsp; n,i,vt,j:longint;<br>&nbsp; &nbsp; u,v,mina,minb,s,tam:Real;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Readln(n,u,v);<br>&nbsp;For i:=1 to n do<br>&nbsp; Readln(A[i],B[i]);<br>&nbsp;mina:=A[1];<br>&nbsp;For i:=2 to n do<br>&nbsp; If A[i]&lt;mina then<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; vt:=i;<br>&nbsp; &nbsp; mina:=A[i];<br>&nbsp; &nbsp;End;<br>&nbsp;B[vt]:=0;<br>&nbsp;For i:=1 to n-1 do<br>&nbsp; For j:=i+1 to n do<br>&nbsp; &nbsp;If B[i]&gt;B[j] then<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;tam:=B[i];<br>&nbsp; &nbsp; &nbsp;B[i]:=B[j];<br>&nbsp; &nbsp; &nbsp;B[j]:=tam;<br>&nbsp; &nbsp; End;<br>&nbsp;minb:=B[2];<br>&nbsp;s:=u/mina+v/minb;<br>&nbsp;Write('S = ',s:0:2);<br>&nbsp;Readln;<br>End.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2139111142/18e356d80792755217e91aaf8244fdf9/promate.exe" />
         <pubDate>2023-09-14 09:38:43 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703899919</guid>
      </item>
      <item>
         <title>Bai3de2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703900451</link>
         <description><![CDATA[<div>Program WIGGLE;<br>Uses crt;<br>Var n,i,d,so1,so2,u,j:longint;<br>&nbsp; &nbsp; S,s1,s2:ansistring;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Write('N = ');Readln(s);<br>&nbsp;s1:='';s2:='';<br>&nbsp;s1:=s1+s[1];<br>&nbsp;s2:=s2+s[2];<br>&nbsp;Val(s1,so1);<br>&nbsp;Val(s2,so2);<br>&nbsp;d:=2;<br>&nbsp;If so1&gt;so2 then<br>&nbsp; Begin<br>&nbsp; &nbsp;For i:=3 to length(s) do<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;s1:='';s2:='';<br>&nbsp; &nbsp; &nbsp;s1:=s1+s[i-1];<br>&nbsp; &nbsp; &nbsp;s2:=s2+s[i];<br>&nbsp; &nbsp; &nbsp;Val(s1,j);<br>&nbsp; &nbsp; &nbsp;Val(s2,u);<br>&nbsp; &nbsp; &nbsp;If i mod 2 &lt;&gt; 0 then<br>&nbsp; &nbsp; &nbsp; If u&gt;j then Inc(d)<br>&nbsp; &nbsp; &nbsp; Else break;<br>&nbsp; &nbsp; &nbsp;If i mod 2 = 0 then<br>&nbsp; &nbsp; &nbsp; If u&lt;j then Inc(d)<br>&nbsp; &nbsp; &nbsp; Else break;<br>&nbsp; &nbsp; End;<br>&nbsp; End<br>&nbsp;Else<br>&nbsp; If so1&lt;so2 then<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; For i:=3 to length(s) do<br>&nbsp; &nbsp; &nbsp;Begin<br>&nbsp; &nbsp; &nbsp; s1:='';s2:='';<br>&nbsp; &nbsp; &nbsp; s1:=s1+s[i-1];<br>&nbsp; &nbsp; &nbsp; s2:=s2+s[i];<br>&nbsp; &nbsp; &nbsp; Val(s1,j);<br>&nbsp; &nbsp; &nbsp; Val(s2,u);<br>&nbsp; &nbsp; &nbsp; If i mod 2 &lt;&gt; 0 then<br>&nbsp; &nbsp; &nbsp; &nbsp;If u&lt;j then Inc(d)<br>&nbsp; &nbsp; &nbsp; &nbsp;Else Break;<br>&nbsp; &nbsp; &nbsp; If i mod 2 = 0 then<br>&nbsp; &nbsp; &nbsp; &nbsp;If u&gt;j then Inc(d)<br>&nbsp; &nbsp; &nbsp; &nbsp;Else break;<br>&nbsp; &nbsp; &nbsp;End;<br>&nbsp; &nbsp;End<br>&nbsp; Else<br>&nbsp; &nbsp;If so1=so2 then d:=1;<br>&nbsp;Write(d);<br>&nbsp;Readln;<br>End.<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2139111142/5fc239dbcd986e815d8a42c00a4ad5fe/wiggle.exe" />
         <pubDate>2023-09-14 09:39:10 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703900451</guid>
      </item>
      <item>
         <title>Bai4de2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703901427</link>
         <description><![CDATA[<div>Program dv;<br>Uses crt;<br>Var A:array[1..1000] of longint;<br>&nbsp; &nbsp; n,i,j,s,tong:longint;<br>Begin<br>&nbsp;Clrscr;<br>&nbsp;Readln(n);<br>&nbsp;s:=0;<br>&nbsp;For i:=1 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;Readln(A[i]);<br>&nbsp; &nbsp;s:=s+A[i];<br>&nbsp; End;<br>&nbsp;For j:=n downto 1 do<br>&nbsp; Begin<br>&nbsp; &nbsp;tong:=0;<br>&nbsp; &nbsp;For i:=1 to n do<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;tong:=tong+A[i];<br>&nbsp; &nbsp; &nbsp;If tong= s div j then tong:=0;<br>&nbsp; &nbsp; End;<br>&nbsp; &nbsp;If tong=0 then break;<br>&nbsp; End;<br>&nbsp;Write('-&gt;',j);<br>&nbsp;Readln;<br>End.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2139111142/6bb738ac20da202f54d6a9c642ec7d8e/div.exe" />
         <pubDate>2023-09-14 09:40:00 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2703901427</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713724767</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/538cf66604fc1dc4b2bdc02dd99f0d0c/Bia_DUNG_so_theo_doi_va_danh_gia_hoc_sinh_cua_GV.doc" />
         <pubDate>2023-09-21 01:27:50 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713724767</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713725538</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/58013c1bc3264a5f1c517c376b78206b/Bia_Ngang_KKHGD_TIN_6.doc" />
         <pubDate>2023-09-21 01:28:18 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713725538</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713725868</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/ce48b4f359b368093d1e4e018906cf09/Bia_Ngang_KKHGD_TIN_9.doc" />
         <pubDate>2023-09-21 01:28:30 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713725868</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713727301</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/37f45af297877dcc166f94d9109b61d3/KHGD_cua_GV_9_Mon_Tin_hoc_NH_2023_2024.doc" />
         <pubDate>2023-09-21 01:29:11 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713727301</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713728596</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1954612798/3eb85db48c44dbf991e4fc5dadfab772/SoDiemCaNhan.xls" />
         <pubDate>2023-09-21 01:29:55 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2713728596</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP SỐ 1 - TIN 9 NĂM 2023</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2718569509</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2152635762/0cbfdb2feb7a82e79065148ff4dfbd31/DE_ON_TAP_SO_1__TIN_9_2023.doc" />
         <pubDate>2023-09-25 03:34:57 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2718569509</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2733486598</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://viblo.asia/p/thuat-toan-sap-xep-nao-la-nhanh-nhat-1VgZvxam5Aw" />
         <pubDate>2023-10-05 07:49:42 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2733486598</guid>
      </item>
      <item>
         <title>DDUONG.PAS</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743213585</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/7c734df81c48d9542be085ab3f0f4401/DDuong.Pas" />
         <pubDate>2023-10-12 07:53:34 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743213585</guid>
      </item>
      <item>
         <title>LANGHOA.PAS</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743214305</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/ca1425505247bf1219ae46176eccafdd/LangHoa.Pas" />
         <pubDate>2023-10-12 07:54:07 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743214305</guid>
      </item>
      <item>
         <title>VANNGHE.PAS</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743214563</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/b36526ba579e7187965fd96980bd71df/VanNghe.Pas" />
         <pubDate>2023-10-12 07:54:22 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743214563</guid>
      </item>
      <item>
         <title>NHAN_DE HSG TIN CAP TRUONG_GIẢI NĂM LỚP 8</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743215714</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/90282548671d2748dadec7df9944a57a/NHAN_DE16.rar" />
         <pubDate>2023-10-12 07:55:17 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743215714</guid>
      </item>
      <item>
         <title>ĐỀ ÔN TẬP LỚP 8</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743223218</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/2554d22d652c0be29cf6d86083323208/1__Bai_tap_on_tap.rar" />
         <pubDate>2023-10-12 08:01:42 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743223218</guid>
      </item>
      <item>
         <title>ôn tập</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743355236</link>
         <description><![CDATA[<div>Program DAYTANG;<br>Const fi='DAYTANG.INP';<br>&nbsp; &nbsp; &nbsp; fo='DAYTANG.OUT';<br>Var A,B:array[1..10000] of longint;<br>&nbsp; &nbsp; i,j,n,k,max,vtmax,l,min:longint;<br>&nbsp; &nbsp; s,s1:ansistring;<br>&nbsp; &nbsp; f,g:text;<br>Begin<br>&nbsp;Assign(f,fi);Reset(f);<br>&nbsp;Assign(g,fo);Rewrite(g);<br>&nbsp;Readln(f,n);<br>&nbsp;For i:=1 to n do<br>&nbsp; Read(f,A[i]);<br>&nbsp;B[1]:=1;<br>&nbsp;If A[2]&lt;A[1] then B[2]:=2<br>&nbsp;Else B[2]:=1;<br>&nbsp;For i:=3 to n do<br>&nbsp; Begin<br>&nbsp; &nbsp;max:=A[1];vtmax:=1;<br>&nbsp; &nbsp;For j:=2 to i-1 do<br>&nbsp; &nbsp; &nbsp;If A[j]&gt;max then<br>&nbsp; &nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp; &nbsp;max:=A[j];<br>&nbsp; &nbsp; &nbsp; &nbsp;vtmax:=j;<br>&nbsp; &nbsp; &nbsp; End;<br>&nbsp; &nbsp;If A[i]&gt;max then B[i]:=1<br>&nbsp; &nbsp;Else<br>&nbsp; &nbsp; Begin<br>&nbsp; &nbsp; &nbsp;l:=B[1];<br>&nbsp; &nbsp; &nbsp;For j:=2 to i-1 do<br>&nbsp; &nbsp; &nbsp; If (A[j]&lt;=max) and (A[j]&gt;=A[i]) and (l&lt;=B[j]) then l:=B[j];<br>&nbsp; &nbsp; &nbsp;B[i]:=l+1;<br>&nbsp; &nbsp; End;<br>&nbsp; End;<br>&nbsp;max:=B[1];vtmax:=1;<br>&nbsp;For i:=1 to n do<br>&nbsp; If B[i]&gt;=max then<br>&nbsp; &nbsp;Begin<br>&nbsp; &nbsp; max:=B[i];<br>&nbsp; &nbsp; vtmax:=i;<br>&nbsp; &nbsp;End;<br>&nbsp;i:=max;<br>&nbsp;s:='';<br>&nbsp;While i&gt;=1 do<br>&nbsp; Begin<br>&nbsp; &nbsp;s1:='';<br>&nbsp; &nbsp;For j:=1 to vtmax do<br>&nbsp; &nbsp; If B[j]=max then vtmax:=j;<br>&nbsp; &nbsp;min:=A[vtmax];<br>&nbsp; &nbsp;For j:=vtmax-1 downto 1 do<br>&nbsp; &nbsp; If B[j]=max then<br>&nbsp; &nbsp; &nbsp;If A[j]&gt;=min then min:=A[j];<br>&nbsp; &nbsp;Str(min,s1);<br>&nbsp; &nbsp;s:=s+s1;<br>&nbsp; &nbsp;max:=max-1;<br>&nbsp; &nbsp;i:=i-1;<br>&nbsp; End;<br>&nbsp;For i:=length(s) downto 1 do<br>&nbsp; Write(g,s[i]);<br><br>&nbsp;Close(f);Close(g);<br>End.<br><br><br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-10-12 09:45:37 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2743355236</guid>
      </item>
      <item>
         <title>HSG TIN 9 ĐẮK LẮK 2016-2017 - CÓ TEST VÀ ĐÁP ÁN</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2747214629</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2167733498/6d22c3b69b742ffe8986a94e8e894ba7/HSG_TIN_9_DAK_LAK_20162017.rar" />
         <pubDate>2023-10-16 00:49:13 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2747214629</guid>
      </item>
      <item>
         <title>ĐÁP ÁN ĐỀ THI HSG TIN 9 NĂM 22 - PHÙ MỸ</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2747234453</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2181586512/a7e4e14d5d671d4db12fa97f269b9ff7/__p__n.rar" />
         <pubDate>2023-10-16 01:05:19 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2747234453</guid>
      </item>
      <item>
         <title>ĐÁP ÁN HSG TIN 9 LAI VUNG 20142015</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2748046872</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2181586512/0e39b693a907e6de21a19b85193a1b65/__P__N.rar" />
         <pubDate>2023-10-16 03:26:50 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2748046872</guid>
      </item>
      <item>
         <title>ĐÁP ÁN HSG TIN 9 LAI VUNG 20142015 Số 2</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2748376829</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2181894117/ac8983f6776735adfcdf626d3cae7aac/__P__N.rar" />
         <pubDate>2023-10-16 07:57:21 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2748376829</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2749640911</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2083111054/5cd4213596ff2b34c6b23c96a69d71e5/Huong_dan_ra_de_tin_hoc.docx" />
         <pubDate>2023-10-16 22:46:36 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2749640911</guid>
      </item>
      <item>
         <title>Đề thi học sinh giỏi lớp 9 môn tin học thành phố Hà Nội 2022 - 2023</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2750222351</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2167733498/ed2de0340a05122e0d614e034e8e98fd/2023_hsg9_hanoi_chuyentin_pro.pdf" />
         <pubDate>2023-10-17 06:41:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2750222351</guid>
      </item>
      <item>
         <title>ĐỀ TIN 12 QUỐC GIA - 2023</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2750262499</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2167733498/ba8a1b335ccbd51745d874cf98301e6e/De_Tin_hoc_12_cap_Quoc_gia_2023.pdf" />
         <pubDate>2023-10-17 07:05:10 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2750262499</guid>
      </item>
      <item>
         <title>ĐỀ HSG TIN 9 VŨNG TÀU 2022</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2750315108</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2167733498/e742d5d7fb44141d23e42ac1b80323f3/2022_hsg9_brvt_vungtau_chuyentin_pro.pdf" />
         <pubDate>2023-10-17 07:42:33 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2750315108</guid>
      </item>
      <item>
         <title>CODE ĐẢO LỚN NHẤT, CHIA QUÀ, PHẢN NGUYÊN TỐ,....</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2751616507</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2184636565/cd4bb2b897faa55846ec7efc3efdda12/New_folder.rar" />
         <pubDate>2023-10-17 22:51:24 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2751616507</guid>
      </item>
      <item>
         <title>GIÁO TRÌNH KTLT C++</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2779515271</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2208864108/5b91b8ea9465890d299341e68fd21796/Gi_o_tr_nh_k__thu_t_l_p_tr_nh.pdf" />
         <pubDate>2023-11-07 09:28:08 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2779515271</guid>
      </item>
      <item>
         <title>GIÁO TRÌNH PYTHON CƠ BẢN</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2785890264</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/f26c3bfe44cd7da1114c72348063d0ca/Giao_trinh_Python_co_ban.pdf" />
         <pubDate>2023-11-12 01:05:03 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2785890264</guid>
      </item>
      <item>
         <title>BÀI TẬP PYTHON CƠ BẢN</title>
         <author>laidinhdatvnpascal</author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2785890388</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1546959076/9e7cc2db5990af04b65815a06010ce25/B_i_T_p___K__thu_t_l_p_tr_nh_v_i_Python.pdf" />
         <pubDate>2023-11-12 01:05:41 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2785890388</guid>
      </item>
      <item>
         <title>Giáo trình python-Đang soạn</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2794688611</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2216953136/0f2dcb142422ded87e2bb92f9aad4bfc/Tai_lieu_boi_duong_HSG_THCS.docx" />
         <pubDate>2023-11-18 09:06:46 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2794688611</guid>
      </item>
      <item>
         <title>Chương 1, 2 - lập trình Python</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2795032484</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2216953136/5fe6703818f53cd9475053b3d25e0197/Ch__ng_1.pdf" />
         <pubDate>2023-11-19 01:10:17 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2795032484</guid>
      </item>
      <item>
         <title>acco</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2840911215</link>
         <description><![CDATA[<pre><code class="language-pascal">program acco;
const fi='acco.inp';
      fo='acco.out';
var n,i,j:longint;
    b:array[1..10000] of longint;
    a:array[1..10000] of string;
    f,g:text;
begin
    assign(f,fi);reset(f);
    assign(g,fo);rewrite(g);
    readln(f,n);
    for i:=1 to n do 
         readln(f,a[i]);
    b[1]:=1;
    for i:=2 to n do 
        begin
           for j:=i downto 1 do
               if a[i]=a[j] then 
                 begin
                    b[i]:=b[j]+1;
                    break;
                 end;
        end;
    for i:=1 to n do 
          writeln(g,a[i],'',b[i]);
    close(f);close(g);
end.</code></pre>]]></description>
         <enclosure url="" />
         <pubDate>2024-01-08 03:23:23 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2840911215</guid>
      </item>
      <item>
         <title>crack camtasia</title>
         <author></author>
         <link>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2887574814</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2337409591/19cffad3101ed7e55672b7bcc5b49627/TSCLicensing.dll" />
         <pubDate>2024-02-19 03:19:10 UTC</pubDate>
         <guid>https://padlet.com/laidinhdatvnpascal/prvm1xo7to7ctl7d/wish/2887574814</guid>
      </item>
   </channel>
</rss>
