<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Târgul programelor PASCAL cu tipuri de date Integer, Real, Boolean, Char, Enumerare, Subdomeniu by Maia Porombrica</title>
      <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie</link>
      <description>30 noiembrie. Elevii clasei a X-a propun cele mai interesante probleme, soluțiile și afișează rezultatul</description>
      <language>en-us</language>
      <pubDate>2022-11-29 17:35:34 UTC</pubDate>
      <lastBuildDate>2026-03-06 03:58:17 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f4c0.png</url>
      </image>
      <item>
         <title>Modele de programe</title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2403330040</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://hgim.tuiasi.ro/wp-content/uploads/2021/02/Laborator_IA_1_2020.pdf" />
         <pubDate>2022-11-30 10:29:37 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2403330040</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404905731</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903939516/320be204a5e4c16173e3f65e4f98d371/photo.jpeg" />
         <pubDate>2022-12-01 10:07:26 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404905731</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404907379</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903937195/c20efb98d0ff5cb0e7fd1cc30de184f1/photo.jpeg" />
         <pubDate>2022-12-01 10:09:04 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404907379</guid>
      </item>
      <item>
         <title>Program Pascal corectat</title>
         <author>adriana1vasluian</author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404907693</link>
         <description><![CDATA[<div>program n_factorial;{antet}&nbsp;<br>&nbsp;<br>{blocul de declaratii si&nbsp;<br>definitii:}&nbsp;<br>var &nbsp;<br>n,i,fac:integer;&nbsp;<br>&nbsp;<br>{corpul programului:}&nbsp; &nbsp;<br>begin&nbsp;<br>write('Introduceti&nbsp; N ');<br>readln(n);&nbsp;<br>&nbsp;<br>fac:=1;{initializare}&nbsp;<br>&nbsp;<br>&nbsp; {ciclu for pentru calculare&nbsp;<br>factorial:}&nbsp;<br>for i:=1 to n do&nbsp;<br>fac:=fac*i;&nbsp;<br>&nbsp;<br>writeln('N factorial ',fac);<br>{afisare total numere&nbsp;<br>negative}&nbsp;<br>&nbsp;<br>readln;&nbsp;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:09:16 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404907693</guid>
      </item>
      <item>
         <title>PASCAL</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908009</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903937195/fce3985e78ab6a3343516b6f00f3c3a3/Ecuatia_de_gradul_II.pas" />
         <pubDate>2022-12-01 10:09:38 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908009</guid>
      </item>
      <item>
         <title>Programul ce urmează afișează pe ecran numerele de ordine ale valorilor tipurilor dedate Studii și Raspuns.</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908082</link>
         <description><![CDATA[<div>&nbsp;Program P16; { Tipul de date Studii si Raspuns} type Studii = (Elementare, Medii, Superioare); Raspuns = (Nu, Da); var i : integer; {numar de ordine} begin i:=ord(Elementare); writeln(i); i:=ord(Medii); writeln(i); i:=ord(Superioare); writeln(i); i:=ord(Nu); writeln(i); i:=ord(Da); writeln(i); end.&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:09:42 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908082</guid>
      </item>
      <item>
         <title>operati cu tip de date boleane </title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908249</link>
         <description><![CDATA[<div>Program bolean ;</div><div>{Operatii cu date de tip</div><div>boolean }</div><div>var x, y, z : boolean;</div><div>begin</div><div>x:=false; y:=false;</div><div>writeln(’x=’, x, ’y=’, y);</div><div>z:=not x;</div><div>writeln(’not x = ’, z);</div><div>z:=x and y;</div><div>writeln(’x and y = ’, z);</div><div>z:=x or y;</div><div>writeln(’x or y = ’, z);</div><div>writeln;</div><div>x:=false; y:=true;</div><div>writeln(’x=’, x, ’y=’, y);</div><div>z:=not x;</div><div>writeln(’not x = ’, z);</div><div>z:=x and y;</div><div>writeln(’x and y = ’, z);</div><div>z:=x or y;</div><div>writeln(’x or y = ’, z);</div><div>writeln;</div><div>x:=true; y:=false;</div><div>writeln(’x=’, x, ’y=’, y);</div><div>z:=not x;</div><div>writeln(’not x = ’, z);</div><div>z:=x and y;</div><div>writeln(’x and y = ’, z);</div><div>z:=x or y;</div><div>writeln(’x or y = ’, z);</div><div>writeln;</div><div>x:=true; y:=true;</div><div>writeln(’x=’, x, ’y=’, y);</div><div>z:=not x;</div><div>writeln(’not x = ’, z);</div><div>z:=x and y;</div><div>writeln(’x and y = ’, z);</div><div>z:=x or y;</div><div>writeln(’x or y = ’, z);</div><div>writeln;</div><div>end.</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:09:52 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908249</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908365</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903942382/74dcda74929d672e7b928c481137be9a/IMG_20221124_200512.jpg" />
         <pubDate>2022-12-01 10:09:59 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908365</guid>
      </item>
      <item>
         <title>caroce</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908416</link>
         <description><![CDATA[<div>Program P18;<br>type Litere = (A, B, C, D, E, F, G);<br>var x : Litere; y : char; i :<br>integer;<br>begin<br>x:=A; i:=ord(x); writeln(i);<br>y:=’A’; i:=ord(y); writeln(i);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:10:02 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404908416</guid>
      </item>
      <item>
         <title></title>
         <author>adriana1vasluian</author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404909288</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://drive.google.com/file/d/1LaJq9vCFskQMnILfSLWiFwiGXHol2Wga/view?usp=share_link" />
         <pubDate>2022-12-01 10:10:47 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404909288</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404909508</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903937064/7c2fdac72f2f37fa0ff1124bb31841c8/Snapchat_259290140.jpg" />
         <pubDate>2022-12-01 10:10:59 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404909508</guid>
      </item>
      <item>
         <title>Program P21</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404910263</link>
         <description><![CDATA[<div>;type Indice=1..10;var i, j, k, m : Indice;beginwriteln(’Introduceti indicii i, j:’);readln(i, j);k:=i+j; writeln(’k=’, k);m:=i-j; writeln(’m=’, m);</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:11:47 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404910263</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404911087</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903944977/1eb3a78657c39ba6e7c1bef6a6f29ac1/1669889495285484030651215581603.jpg" />
         <pubDate>2022-12-01 10:12:31 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404911087</guid>
      </item>
      <item>
         <title>Program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404911292</link>
         <description><![CDATA[<div>program n_factorial;{antet}&nbsp;<br>&nbsp;<br>{blocul de declaratii si&nbsp;<br>definitii:}&nbsp;<br>var &nbsp;<br>n,i,fac:integer;&nbsp;<br>&nbsp;<br>{corpul programului:}&nbsp; &nbsp;<br>begin&nbsp;<br>write('Introduceti&nbsp; N ');<br>readln(n);&nbsp;<br>&nbsp;<br>fac:=1;{initializare}&nbsp;<br>&nbsp;<br>&nbsp; {ciclu for pentru calculare&nbsp;<br>factorial:}&nbsp;<br>for i:=1 to n do&nbsp;<br>fac:=fac*i;&nbsp;<br>&nbsp;<br>writeln('N factorial ',fac);<br>{afisare total numere&nbsp;<br>negative}&nbsp;<br>&nbsp;<br>readln;&nbsp;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:12:41 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404911292</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404911300</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://docs.google.com/document/d/1f7TGUd4cJeCjkEWI_ODwfU6FkYaSuKDA_3-aARShpjw/edit?usp=sharing" />
         <pubDate>2022-12-01 10:12:41 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404911300</guid>
      </item>
      <item>
         <title>Programa Pascal</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404912113</link>
         <description><![CDATA[<div>Program P3;<br>{ Operatii cu date de tipul integer }<br>var x, y, z : integer;<br>begin<br>writeln(’Introduceti numerele intregi x, y:’);<br>readln(x, y);<br>writeln(’x=’, x);<br>writeln(’y=’, y);<br>z:=x+y; writeln(’x+y=’, z);<br>z:=x-y; writeln(’x-y=’, z);<br>z:=x*y; writeln(’x*y=’, z);<br>z:=x mod y; writeln(’x mod y=’, z);<br>z:=x div y; writeln(’x div y=’, z);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:13:31 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404912113</guid>
      </item>
      <item>
         <title>EU :DDDD</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404912734</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903936447/a5f3a17b324a8376ad1d3e1b3958560d/photo.jpeg" />
         <pubDate>2022-12-01 10:14:11 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404912734</guid>
      </item>
      <item>
         <title>program pascal</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404912931</link>
         <description><![CDATA[<div>Program P16;<br>&nbsp;{ Tipul de date Studii si<br>Raspuns}<br>type Studii = (Elementare=1,<br>Medii, Superioare);<br>Raspuns = (Nu, Da);<br>var i : integer; {numar de<br>ordine}<br>begin<br>&nbsp;i:=ord(Elementare); writeln(i);<br>&nbsp;i:=ord(Medii); writeln(i);<br>&nbsp;i:=ord(Superioare); writeln(i);<br>&nbsp;i:=ord(Nu); writeln(i);<br>&nbsp;i:=ord(Da); writeln(i);<br>&nbsp;end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:14:23 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404912931</guid>
      </item>
      <item>
         <title>Program PASCAL</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404913192</link>
         <description><![CDATA[<div>Program P20;<br>{Ecuatii de gradul II}<br>&nbsp;var a, b, c, x1, x2, delta :real;<br>&nbsp;begin<br>&nbsp;write('Introduceti a, b, c');<br>&nbsp;read(a, b, c);<br>&nbsp;delta:=b*b-4*a*c; write (delta);<br>&nbsp;x1:=(-b-sqrt(delta))/(2*a);<br>&nbsp;x2:=(-b+sqrt(delta))/(2*a);<br>&nbsp;write ('Solutiile sunt:',x1, x2);<br>&nbsp;end.<br>&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:14:40 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404913192</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914343</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903942382/628f8b9cf439eb99a7a750801a324d65/Screenshot_2022_11_10_024840.png" />
         <pubDate>2022-12-01 10:15:48 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914343</guid>
      </item>
      <item>
         <title>program arie_patrat.</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914513</link>
         <description><![CDATA[<div><strong>program arie_patrat;<br>var lat, aria: integer;<br>begin<br>writeln(‘Dati latura patratului’);<br>readln(lat);<br>aria := lat * lat;<br>write(‘Aria patratului este ‘, aria);<br>end.</strong></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:16:00 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914513</guid>
      </item>
      <item>
         <title>salut :((</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914562</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:16:02 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914562</guid>
      </item>
      <item>
         <title>Program Pascal </title>
         <author>yulianagrejdean</author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914577</link>
         <description><![CDATA[<div>Program P108;<br>{Comunicarea prin variabile globale }<br>var a, {variabilă globală în P }<br>b : real; {variabilă globală în P, F }<br>procedure P;<br>var c : integer; {variabilă locală în P }<br>begin<br>c:=2;<br>b:=a*c;<br>end; { P }<br>function F : real;<br>var a : 1..5; {variabilă locală în F }<br>begin<br>a:=3;<br>F:=a+b;<br>end; { F }<br>begin<br>a:=1;<br>P;<br>writeln(b); {se afişează 2.0000000000E+00 }<br>writeln(F); {se afişează 5.0000000000E+00 }<br>readln;<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:16:03 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404914577</guid>
      </item>
      <item>
         <title>program </title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404915260</link>
         <description><![CDATA[<div>Program  culori  ;<br>{ Operatii relationale asupra<br>valorilor de tip ordinal }<br>type Culoare = (Galben,<br>Verde, Albastru, Violet);<br>begin<br>writeln(Verde&lt;Violet);<br>{true}<br>writeln(Verde&lt;=Violet);<br>{true}<br>writeln(Verde=Violet);<br>{false}<br>writeln(Verde&gt;=Violet);<br>{false}<br>writeln(Verde&gt;Violet);<br>{false}<br>writeln(Verde&lt;&gt;Violet);<br>{true}<br>end.</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:16:42 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404915260</guid>
      </item>
      <item>
         <title>Program de calcul a ecuatiei de gradul II</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404915682</link>
         <description><![CDATA[<div>program P20oct_Anton_Gheorghe;<br>{Ecuatii de gradul 2}<br>var a, b, c, DELTA, x1, x2 :real;<br>begin<br>&nbsp; Writeln ('Introduceti a, b, c');<br>&nbsp;read (a,b,c);<br>&nbsp; delta:=b*b-4*a*c;<br>&nbsp; write (delta);<br>&nbsp; x1:=(-b-sqrt(delta))/(2*a);<br>&nbsp; &nbsp;x2:=(-b+sqrt(delta))/(2*a);<br>&nbsp; &nbsp;writeln ('Solutile sunt:',x1,x2);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:17:01 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404915682</guid>
      </item>
      <item>
         <title>;\</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404916041</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903937288/0d983d6608e8742105c2d28c5bd39316/photo.jpeg" />
         <pubDate>2022-12-01 10:17:24 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404916041</guid>
      </item>
      <item>
         <title>Program P24</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404916474</link>
         <description><![CDATA[<div>{ Predecesorii si succesorii valorilor ordinale } begin writeln(pred(’B’)); { ’A’ } writeln(succ(’B’)); { ’C’ } writeln(pred(0)); { -1 } writeln(succ(0)); { 1 } writeln(pred(’0’)); { ’/’ } writeln(succ(’0’)); { ’1’ } end.&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:17:53 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404916474</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404916876</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903937195/10751c7745739aee8b15910a7dec4544/program122.pas" />
         <pubDate>2022-12-01 10:18:18 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404916876</guid>
      </item>
      <item>
         <title>Program P25</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917529</link>
         <description><![CDATA[<div>&nbsp;type Zi = (L, Ma, Mi, J, V, S, D); var z1, z2 : Zi; begin z1:=Ma; writeln(ord(z1)); z2:=pred(z1); writeln(ord(z2)); z2:=succ(z1); writeln(ord(z2)); z1:=Mi; z2:=V; writeln(z1z2); writeln(z1&lt;&gt;z2); end. // Programul P25 #include&nbsp; using namespace std; int main() { enum Zi {L, Ma, Mi, J, V, S, D} z1,z2; z1=Ma; cout&lt;z2)&lt;&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:18:54 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917529</guid>
      </item>
      <item>
         <title>Rezultatul Final</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917564</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1902809764/4901286e0bc923472edf1cd8d29ac3b7/image.png" />
         <pubDate>2022-12-01 10:18:56 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917564</guid>
      </item>
      <item>
         <title>pascal</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917583</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903942382/d3e282ad1518ffda4116aba06794336f/VITEZA_PASCAL_CATALINA_.pas" />
         <pubDate>2022-12-01 10:18:57 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917583</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917587</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903937195/890c5804dbea3c9f04fbe10bbd020dd4/probleme.pas" />
         <pubDate>2022-12-01 10:18:57 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917587</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917710</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1902807980/5ef25fa1058a92c8d4b34d3b7b40608b/IMG_20221201_121420_896.jpg" />
         <pubDate>2022-12-01 10:19:04 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404917710</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918100</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1873978343/19cbc18624574cdce1f69cfa99674cfd/photo.jpeg" />
         <pubDate>2022-12-01 10:19:26 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918100</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918108</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903937195/174093ca3491acea9dbe54fe7f66d102/program___.pas" />
         <pubDate>2022-12-01 10:19:27 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918108</guid>
      </item>
      <item>
         <title>pascal</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918481</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903942382/32251470457534cf016094b108fb0894/PASCAL_10_____CATALINA.pas" />
         <pubDate>2022-12-01 10:19:46 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918481</guid>
      </item>
      <item>
         <title>Program P66; { Tabelul functiei y=2*x }var x, y, x1, x2, deltaX : real;begin write(’x1=’); readln(x1); write(’x2=’); readln(x2); write(’deltaX=’); readln(deltaX); writeln(’x’:10, ’y’:20); writeln; x:=x1; while x&lt;=x2 do begin y:=2*x; writeln(x:10, y:20); x:=x+deltaX; end; readln;end.</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918832</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:19:58 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404918832</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404919182</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://docs.google.com/document/d/124TIXr9PeVmC1-kJTJ7HbPhwPeXvBPlyr6LCt48vCgw/edit?usp=sharing" />
         <pubDate>2022-12-01 10:20:16 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404919182</guid>
      </item>
      <item>
         <title>pascal primul program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404919531</link>
         <description><![CDATA[<div>program primul_program_pentru_Padlet;<br>var a, b, c, d, e, f, g, h&nbsp; : integer;<br>begin<br>&nbsp; writeln ('introduceti 8 numere, iar programul mai intai v-a aduna, apoi va scadea, le va inmulti, apoi- imparti');<br>&nbsp; readln ( a, b, c, d, e, f, g, h);<br>&nbsp; writeln (a+b+C+D+E+F+G+H);<br>&nbsp; writeln (a-b-C-D-E-f-G-H);<br>&nbsp; writeln (a*b*C*D*E*F*G*H);<br>&nbsp; writeln (a/b/C/D/E/F/G/H);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:20:38 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404919531</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404919847</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://docs.google.com/document/d/13--hd0Ib68vKazguzU8D4rWpG7C6Pvebzrlwc-dOYRs/edit?usp=sharing" />
         <pubDate>2022-12-01 10:20:54 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404919847</guid>
      </item>
      <item>
         <title>Program P27</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404920000</link>
         <description><![CDATA[<div>&nbsp;{ Eroare } var i : integer; x : real; begin i:=1; x:=1.0; writeln(ord(i)); writeln(ord(x)); writeln(pred(i)); writeln(pred(x)); writeln(succ(i)); writeln(succ(x)); end.&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:21:01 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404920000</guid>
      </item>
      <item>
         <title>Rezultat afisat</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404920057</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903938142/f87550abe7bdc8fc497a4b52b1f663da/Screenshot_2022_12_01_121905.png" />
         <pubDate>2022-12-01 10:21:05 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404920057</guid>
      </item>
      <item>
         <title>Pascal</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404920926</link>
         <description><![CDATA[<div>Program Noiembrie03_;<br>{Programul va transforma din km\h in m\s}<br>var V1, V2 : real; ani:integer;<br>begin<br>&nbsp; writeln ('De cati ani conduceti automobilul');<br>&nbsp; read (ani);<br>&nbsp; &nbsp;write ('Introduceti viteza in km\h');<br>&nbsp; read(V1);<br>&nbsp; V2:=V1*1000/3600;<br>&nbsp; write(V1, 'km/h este', V2, 'm/s');<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:21:52 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404920926</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922006</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://docs.google.com/document/d/1hzgIEjw2IB7y8aaJF8lsTJ5DL_qTDPJD1DGITMtYls0/edit?usp=sharing" />
         <pubDate>2022-12-01 10:22:56 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922006</guid>
      </item>
      <item>
         <title>Programa </title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922066</link>
         <description><![CDATA[<div>Program P16;<br>&nbsp;{ Tipul de date Studii si Raspuns}<br>type Studii = (Elementare, Medii, Superioare);<br>Raspuns = (Nu, Da);<br>var i : integer; {numar de ordine}<br>begin<br>&nbsp;i:=ord(Elementare); writeln(i);<br>&nbsp;i:=ord(Medii); writeln(i);<br>&nbsp;i:=ord(Superioare); writeln(i);<br>&nbsp;i:=ord(Nu); writeln(i);<br>&nbsp;i:=ord(Da); writeln(i);<br>&nbsp;end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:23:00 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922066</guid>
      </item>
      <item>
         <title>Program pascal unde am facut verificarile</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922184</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903938142/57f212b4024a5255e2b74a374595ff9c/20.pas" />
         <pubDate>2022-12-01 10:23:07 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922184</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922524</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1883970722/2455acfb2af1fe0d6310e092cd3acabc/unnamed.jpg" />
         <pubDate>2022-12-01 10:23:28 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404922524</guid>
      </item>
      <item>
         <title>integer si real</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923452</link>
         <description><![CDATA[<div>Program Ex2;<br>var z: real;<br>a, b: integer;<br>begin<br>a:=2;<br>b:=17;<br>z:=(a+b)*2;<br>writeln(’z=’, z);<br>end.<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:24:26 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923452</guid>
      </item>
      <item>
         <title>Program din surse recomandate</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923532</link>
         <description><![CDATA[<pre> Program P2;
      Uses crt;
      Var a,b,c,Suma: integer;
          media: real;
   Begin
   ClrScr;
   Write('Introduceti trei numere intregi: ');
   Readln(a,b,c);
   Suma:=a+b+c;
   Writeln('Suma numerelor ',a,', ',b,'si ',c,' este: ',Suma);
   media:=Suma/3;
   Write('Media aritmetica este: ');
   Writeln(media:5:2);
   Readkey;
   End.</pre><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:24:30 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923532</guid>
      </item>
      <item>
         <title>Calucularea suma numerelor reale </title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923852</link>
         <description><![CDATA[<div>Program P1;<br>{Suma numerelor intregi x,y,z}<br>var x,y,z,s:integer;<br>begin<br>&nbsp;writeln('Introduceti numerele intregi x, y, z:');<br>&nbsp;readln(x,y,z);<br>&nbsp;s := x*y*z;;<br>&nbsp;writeln('Suma numerelor introduse:');<br>&nbsp;writeln(s);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:24:47 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923852</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923895</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903935758/e60f2b8da307fdd9d9082c3362e36ae7/vas.jpg" />
         <pubDate>2022-12-01 10:24:50 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923895</guid>
      </item>
      <item>
         <title>Programa Pascal</title>
         <author>140mihai140</author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923922</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1576337358/44e86ef34e9ef7c83645eded3ae3d97f/image.png" />
         <pubDate>2022-12-01 10:24:52 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404923922</guid>
      </item>
      <item>
         <title>integer real boolean char</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404924545</link>
         <description><![CDATA[<div>Program Ex3c;<br>var a: integer;<br>b: real;<br>c: boolean;<br>d: char;<br>begin<br>WriteLn (SizeOf (a));<br>WriteLn (SizeOf (integer));<br>WriteLn (SizeOf (real));<br>WriteLn (SizeOf (char));<br>WriteLn (SizeOf (boolean));<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:25:27 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404924545</guid>
      </item>
      <item>
         <title>Rezultatul final</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404925154</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1689384347/7ffaba38afee43d510f9610023a5d97a/image.png" />
         <pubDate>2022-12-01 10:25:48 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404925154</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404925499</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1689384347/1dfd50be57b5c0ac7d35b01bad3fab4c/IMG_20221201_121815_157.jpg" />
         <pubDate>2022-12-01 10:26:10 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404925499</guid>
      </item>
      <item>
         <title>Operatii cu date de tipul integer</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404925513</link>
         <description><![CDATA[<div>Program P3;<br>{ Operatii cu date de tipul integer }<br>var x, y, z : integer;<br>begin<br>writeln(’Introduceti numerele intregi x, y:’);<br>readln(x, y);<br>writeln(’x=’, x);<br>writeln(’y=’, y);<br>z:=x+y; writeln(’x+y=’, z);<br>z:=x-y; writeln(’x-y=’, z);<br>z:=x*y; writeln(’x*y=’, z);<br>z:=x mod y; writeln(’x mod y=’, z);<br>z:=x div y; writeln(’x div y=’, z);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:26:11 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404925513</guid>
      </item>
      <item>
         <title> Program cu eroare</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404926486</link>
         <description><![CDATA[<div>Program Ex3b;<br>{ Program cu eroare }<br>var x, y, z : integer;<br>m : real;<br>begin<br>writeln(’Introduceti numerele<br>intregi x, y:’);<br>readln(x, y);<br>writeln(’Introduceti un numar<br>real m:’);<br>readln (m);<br>z:=m mod y;<br>writeln(’m mod y=’, z);<br>z:=m div y;<br>writeln(’m div y=’, z);<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:27:06 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404926486</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404928732</link>
         <description><![CDATA[<div>program as8;</div><div>uses crt;</div><div>var a,b,c,d:integer;</div><div>x1,x2:real;</div><div>begin</div><div>clrscr;</div><div>write('a=');readln(a);</div><div>write('b=');readln(b);</div><div>write('c=');readln(c);</div><div>if a=0 then write('Ecuatia nu este de grad 2')</div><div>else</div><div>begin</div><div>d:=b*b-4*a*c;</div><div>if d&lt;0 then write('Ecuatia are radacini complexe')</div><div>else begin</div><div>x1:=-1*b/(2*a)+sqrt(d)/(2*a);</div><div>x2:=-1*b/(2*a)-sqrt(d)/(2*a);</div><div>writeln('x1=',x1:3:1);</div><div>writeln('x2=',x2:3:1)</div><div>end</div><div>end;</div><div>readln;</div><div>end.</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:29:22 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404928732</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929106</link>
         <description><![CDATA[<div>program as10;</div><div>uses crt;</div><div>var n,a,b,c:integer;</div><div>begin</div><div>clrscr;</div><div>write('n=');readln(n);</div><div>a:=0;</div><div>b:=1;</div><div>write('Primele ',n,' numere din sirul lui fibonacci sunt ');</div><div>write(a,' ',b,' ');</div><div>n:=n-2;</div><div>while n&gt;0 do begin</div><div>c:=a+b;</div><div>write(c,' ');</div><div>n:=n-1;</div><div>a:=b;</div><div>b:=c</div><div>end;</div><div>readln;</div><div>end.</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:29:45 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929106</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929458</link>
         <description><![CDATA[<div>program t1;</div><div>uses crt;</div><div>var a:array[1..20] of integer;</div><div>n,min,max,i:integer;</div><div>begin</div><div>clrscr;</div><div>write('Dimensiunea sirului=');readln(n);</div><div>write('Introduceti sirul ');</div><div>for i:=1 to n do read(a[i]);</div><div>min:=a[1];</div><div>for i:=2 to n do if a[i]&lt;min then min:=a[i];</div><div>max:=a[1];</div><div>for i:=2 to n do if a[i]&gt;max then max:=a[i];</div><div>writeln('Minimul sirului este ',min);</div><div>writeln('Maximul sirului este ',max);</div><div>readln;readln;</div><div>end.</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:30:08 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929458</guid>
      </item>
      <item>
         <title></title>
         <author>140mihai140</author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929672</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1576337358/4802ec8a636d0f8c4674070b209a74de/photo.jpeg" />
         <pubDate>2022-12-01 10:30:21 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929672</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929679</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903962142/c75a61e23aa9f67bbfa04d1f8fc2abdb/photo.jpeg" />
         <pubDate>2022-12-01 10:30:22 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929679</guid>
      </item>
      <item>
         <title></title>
         <author>antonghgh97</author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929691</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1577689259/9e11d027a92ed38c1942398e04a1b9b1/IMG_20221201_122833.jpg" />
         <pubDate>2022-12-01 10:30:23 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929691</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929704</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903959598/672484170948bdb7cd17de6811eea681/IMG_20221118_190035.jpg" />
         <pubDate>2022-12-01 10:30:24 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929704</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929707</link>
         <description><![CDATA[<div>program t2;</div><div>uses crt;</div><div>var a:array[1..20] of integer;</div><div>n,v,poz,i:integer;</div><div>begin</div><div>clrscr;</div><div>write('n=');readln(n);</div><div>write('Sirul');</div><div>for i:=1 to n do read(a[i]);</div><div>write('Valoarea cautata=');readln(v);</div><div>poz:=0;</div><div>for i:=1 to n do if a[i]=v then poz:=i;</div><div>if poz=0 then write('Valoarea nu este in sir')</div><div>else write('Valoarea se gaseste pe pozitia ',poz);</div><div>readln;</div><div>end.</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:30:24 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404929707</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930071</link>
         <description><![CDATA[<div>program t3;</div><div>uses crt;</div><div>var a:array[1..20] of integer;</div><div>n,i,aux:integer;</div><div>begin</div><div>clrscr;</div><div>write('n=');readln(n);</div><div>write('Sirul');</div><div>for i:=1 to n do read(a[i]);</div><div>for i:=1 to n div 2 do begin</div><div>aux:=a[i];</div><div>a[i]:=a[n-i+1];</div><div>a[n-i+1]:=aux</div><div>end;</div><div>write('Sirul inversat este ');</div><div>for i:=1 to n do write(a[i],' ');</div><div>readln;</div><div>readln;</div><div>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:30:48 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930071</guid>
      </item>
      <item>
         <title>Program  arie_patrat;</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930307</link>
         <description><![CDATA[<div>Program arie_patrat;<br>var lat,aria:integer;<br>begin&nbsp;<br>writeln('Dati latura patratului');<br>Readln(lat);<br>aria:=lat *lat;write ('Aria patratului este ' aria);&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br>end.</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:31:03 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930307</guid>
      </item>
      <item>
         <title>program care determina viteza</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930377</link>
         <description><![CDATA[<div>program viteza1;<br>{PROGRAMUL VA TRANSFORMA KM IN M/S}<br>VAR V1, V2 : REAL; ani: integer;<br>BEGIN&nbsp;<br>WRITeln('de cati ani conduceti automobilul');<br>read (ANI);<br>WRITe('introduceti viteza in km/H');<br>read(ani);<br>read(V1);<br>v2:=V1*1000/3600;<br>WRITE(v1,'km/s este ', v2,'m/s');<br><br>ENd.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:31:08 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930377</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930563</link>
         <description><![CDATA[<div>program t4;</div><div>uses crt;</div><div>var a:array[1..20] of integer;</div><div>n,s,k,i:integer;</div><div>begin</div><div>clrscr;</div><div>write('n=');readln(n);</div><div>write('Sirul');</div><div>for i:=1 to n do read(a[i]);</div><div>s:=0;</div><div>k:=0;</div><div>for i:=1 to n do if a[i] mod 2=0 then begin</div><div>s:=s+a[i];</div><div>k:=k+1</div><div>end;</div><div>writeln('Media aritmetica a numerelor pare este ',s/k:4:2);</div><div>s:=0;</div><div>k:=0;</div><div>for i:=1 to n do if a[i] mod 2&lt;&gt;0 then begin</div><div>s:=s+a[i];</div><div>k:=k+1</div><div>end;</div><div>writeln('Media aritmetica a numerelor impare este ',s/k:4:2);</div><div>readln;readln;</div><div>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:31:21 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930563</guid>
      </item>
      <item>
         <title>Program Pascal</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930597</link>
         <description><![CDATA[<div>Program P108;<br>{Comunicarea prin variabile globale }<br>var a, {variabilă globală în P }<br>b : real; {variabilă globală în P, F }<br>procedure P;<br>var c : integer; {variabilă locală în P }<br>begin<br>c:=2;<br>b:=a*c;<br>end; { P }<br>function F : real;<br>var a : 1..5; {variabilă locală în F }<br>begin<br>a:=3;<br>F:=a+b;<br>end; { F }<br>begin<br>a:=1;<br>P;<br>writeln(b); {se afişează <a>2.0000000000</a>E+00 }<br>writeln(F); {se afişează <a>5.0000000000</a>E+00 }<br>readln;<br>end.</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1903938142/57f212b4024a5255e2b74a374595ff9c/20.pas" />
         <pubDate>2022-12-01 10:31:23 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930597</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930945</link>
         <description><![CDATA[<div>program t5;</div><div>uses crt;</div><div>var a:array[1..20] of integer;</div><div>n,i,aux:integer;</div><div>ordonat:boolean;</div><div>begin</div><div>clrscr;</div><div>write('n=');readln(n);</div><div>write('Sirul');</div><div>for i:=1 to n do read(a[i]);</div><div>ordonat:=false;</div><div>while ordonat=false do begin</div><div>ordonat:=true;</div><div>for i:=1 to n-1 do if a[i]&gt;a[i+1] then</div><div>begin</div><div>aux:=a[i];</div><div>a[i]:=a[i+1];</div><div>a[i+1]:=aux;</div><div>ordonat:=false</div><div>end;</div><div>end;</div><div>write('Sirul ordonat este ');</div><div>for i:=1 to n do write(a[i],' ');</div><div>readln;</div><div>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:31:40 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404930945</guid>
      </item>
      <item>
         <title>program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404931421</link>
         <description><![CDATA[<div>program t6;</div><div>uses crt;</div><div>var a,b,c:array[1..20] of integer;</div><div>n,m,i,j,k:integer;</div><div>begin</div><div>clrscr;</div><div>write('n=');readln(n);</div><div>write('Primul sir=');</div><div>for i:=1 to n do read(a[i]);</div><div>write('m=');readln(m);</div><div>write('Al doilea sir=');</div><div>for j:=1 to m do read(b[j]);</div><div>i:=1;</div><div>j:=1;</div><div>k:=0;</div><div>while (i&lt;=n) and (j&lt;=m) do</div><div>begin</div><div>k:=k+1;</div><div>if a[i]&lt;b[j] then begin</div><div>c[k]:=a[i];</div><div>i:=i+1</div><div>end</div><div>else begin</div><div>c[k]:=b[j];</div><div>j:=j+1</div><div>end</div><div>end;</div><div>if i&gt;n then for i:=j to m do begin</div><div>k:=k+1;</div><div>c[k]:=b[i]</div><div>end</div><div>else for j:=i to n do begin</div><div>k:=k+1;</div><div>c[k]:=a[j]</div><div>end;</div><div>write('Sirul rezultat este ');</div><div>for i:=1 to k do write(c[i],' ');</div><div>readln;readln;</div><div>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:32:07 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404931421</guid>
      </item>
      <item>
         <title>Conditiile</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404932008</link>
         <description><![CDATA[<div>Programul ce urmeaza afisaza pe ecran numerele de ordin ale valorilor ripurilor de date. Studii sin raspuns</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:32:48 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404932008</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404933327</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1667198603/88a20645acc5608d103ab3db52d95a27/photo.jpeg" />
         <pubDate>2022-12-01 10:33:56 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404933327</guid>
      </item>
      <item>
         <title>Program PASCAL</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404933451</link>
         <description><![CDATA[<div>Program P19;<br>&nbsp;{ Valorile variabilelor de tip subdomeniu }<br>type Indice = 1..10;<br>Zi = (L, Ma, Mi, J, V, S, D);<br>ZiDeLucru = L..V;<br>ZiDeOdihna = S..D;<br>var i : Indice; { valori posibile: 1, 2, ..., 10 }<br>z : Zi; { valori posibile: L, Ma, ..., D }<br>zl : ZiDeLucru; { valori posibile: L, Ma, ..., V }<br>zo : ZiDeOdihna; { valori posibile: S, D }<br>begin<br>&nbsp;i:=5; i:=11; { Eroare, i&gt;10 }<br>&nbsp;z:=L; zl:=J; zl:=S; { Eroare, zl&gt;V }<br>&nbsp;zo:=S; zo:=V; { Eroare, zo&lt;S }<br>&nbsp;writeln('Sfarsit');<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-01 10:34:04 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2404933451</guid>
      </item>
      <item>
         <title>Program Andreea;</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2414133705</link>
         <description><![CDATA[<div>var;<br>a,b: boolean;<br>begin;<br>Writeln ('Introdu 3 numere');<br>readln (a,b);<br>if a&gt;b then ;<br>x:True;<br>if a&lt;b then ;<br>x : False;<br>if a=b then;<br>x: True;<br>writeln('Rezultatul= ',x);<br>readln;<br>end.<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-08 10:16:17 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2414133705</guid>
      </item>
      <item>
         <title>Program Test ;</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2414139094</link>
         <description><![CDATA[<div>var major : boolean;<br>      varsta :integer;<br>begin;<br>write    ('Introduceti varsta dumnevoastra ');<br>readln (varsta);<br>if varsta &gt;=18 ; then major := true;<br>else major :=false;<br>writeln (major);<br>end;<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-08 10:22:14 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/pascal10uprobleme30noiembrie/wish/2414139094</guid>
      </item>
   </channel>
</rss>
