<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Subprograme. Funcții by Maia Porombrica</title>
      <link>https://padlet.com/matematica_salcuta/12real1decembrie</link>
      <description>Elevii clasei a 12 R propun probleme cu funcții</description>
      <language>en-us</language>
      <pubDate>2022-11-30 09:59:30 UTC</pubDate>
      <lastBuildDate>2022-12-14 10:05:00 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f537.png</url>
      </image>
      <item>
         <title>Manual verde</title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403297762</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://liceudonici.do.am/Turbo_Pascal-Culegere_de_probleme.pdf" />
         <pubDate>2022-11-30 10:02:51 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403297762</guid>
      </item>
      <item>
         <title>PROBLEMA Cel mai mare divizor comun</title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403305102</link>
         <description><![CDATA[<div>Să scriem un program care să calculeze cel mai mare divizor comun a două numere. În acest scop, vom utiliza o funcţie, care va avea două argumente: numerele întregi a şi b. În urma algoritmului, a şi b se modifică, însă acest lucru nu vrem să fie transmis înapoi în programul principal, aşa încât nu vom folosi cuvântul rezervat var în faţa identificatorilor. În partea stângă a textului programului am numerotat instrucţiunile, în ordinea în care se execută ele.&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-11-30 10:08:05 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403305102</guid>
      </item>
      <item>
         <title>Soluție/programa</title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403308573</link>
         <description><![CDATA[<div>program CalculCMMDC;<br>function CMMDC(a,b: Integer): Integer;<br>&nbsp;begin<br>&nbsp;while a&lt;&gt;b do<br>&nbsp;if a&gt;b then a:=a-b<br>&nbsp;else b:=b-a;<br>&nbsp;CMMDC:=a<br>&nbsp;end;<br>&nbsp;var x,y: Integer;<br>&nbsp;begin<br>&nbsp;x:=20; y:=24;<br>&nbsp;WriteLn(CMMDC(x,y))<br>&nbsp;end.&nbsp;</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-11-30 10:10:40 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403308573</guid>
      </item>
      <item>
         <title>Rezultatul afițat</title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403309441</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/240683083/743440a9a67fb9a0eaaa84070c34aba9/image.png" />
         <pubDate>2022-11-30 10:11:28 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403309441</guid>
      </item>
      <item>
         <title>Resursa:</title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403311021</link>
         <description><![CDATA[<div>Pagina 4 (89)</div>]]></description>
         <enclosure url="https://www.edusoft.ro/pascal12/cap5_pascal12.pdf" />
         <pubDate>2022-11-30 10:12:40 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403311021</guid>
      </item>
      <item>
         <title>Se dă un vector cu n (1&lt;= n&lt;=100). Să se afișeze componentele prime.</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403313232</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-11-30 10:14:34 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403313232</guid>
      </item>
      <item>
         <title></title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403313286</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.edusoft.ro/pascal12/cap5_pascal12.pdf" />
         <pubDate>2022-11-30 10:14:37 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403313286</guid>
      </item>
      <item>
         <title>Programa</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403316293</link>
         <description><![CDATA[<div>program Subpr1;<br>type tablou=array [1..100]of integer;<br>var a:tablou;<br>&nbsp; &nbsp; i,n:byte;<br>procedure cit_tablou(var t:tablou; var dim:byte);<br>var j:byte;<br>begin<br>&nbsp; write('Dimensiunea vectorului:');<br>&nbsp; readln(dim);<br>&nbsp; for j:=1 to dim do begin<br>&nbsp; &nbsp; write('Componenta',j,':');<br>&nbsp; &nbsp; readln(t[j]);<br>&nbsp; end;<br>end;<br>function prim(x:integer):boolean;<br>var j:integer;<br>&nbsp; &nbsp; f:boolean;<br>begin<br>&nbsp; f:=true; j:=1;<br>&nbsp; repeat<br>&nbsp; &nbsp; inc(j);<br>&nbsp; &nbsp; if x mod j=0 then f:=false;<br>&nbsp; until (j&gt;x div 2) or (not f);<br>&nbsp; if x=1 then f:=false;<br>&nbsp; prim:=f;<br>end;<br>Begin<br>&nbsp; Cit_tablou(a,n);<br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp; if prim(a[i]) then write(a[i],' ');<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-11-30 10:17:18 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403316293</guid>
      </item>
      <item>
         <title>Rezultatul afișat</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403318090</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1873976489/38e870a1998a7ee304c9320db481d8ac/image.png" />
         <pubDate>2022-11-30 10:18:45 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403318090</guid>
      </item>
      <item>
         <title>Resurse</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403320764</link>
         <description><![CDATA[<div>Manual Verde<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1873976489/0ec4ab1add91adc232adf3e7583a7d1a/image.png" />
         <pubDate>2022-11-30 10:21:11 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403320764</guid>
      </item>
      <item>
         <title>Proceduri si functii p.77</title>
         <author>matematica_salcuta</author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403323981</link>
         <description><![CDATA[]]></description>
         <enclosure url="http://brahms.fizica.unibuc.ro/atom/atom/TPcurs1.pdf" />
         <pubDate>2022-11-30 10:24:09 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403323981</guid>
      </item>
      <item>
         <title>PROGRAMA</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403340224</link>
         <description><![CDATA[<div>program Subpr2;<br>type tablou=array[1..100] of integer;<br>var a:tablou;<br>&nbsp; &nbsp; i,n,t:byte;<br>&nbsp; &nbsp; b:[1..4] of byte;<br>procedure Cit_tablou (var t:tablou; var dim:byte);<br>var j:byte;<br>begin&nbsp;<br>&nbsp; &nbsp; write ('Dimensiunea vectorului:');<br>&nbsp; &nbsp; readln(dim);<br>&nbsp; &nbsp; for j:=1 to dim do begin<br>&nbsp; &nbsp; &nbsp; &nbsp; write('Componenta',j,':');<br>&nbsp; &nbsp; &nbsp; &nbsp; readln(t[j]);<br><br>&nbsp; &nbsp; end;<br>end;<br>function nc(x:integer) :byte;<br>var i,nr_cifre,intreg:integer;<br>begin<br>&nbsp; &nbsp;i:=1; nr_cifre:=0;<br>&nbsp; &nbsp;repeat<br>&nbsp; &nbsp; &nbsp;intreg:=trunc(a/10*i));<br>&nbsp; &nbsp; &nbsp;i:=i*10;<br>&nbsp; &nbsp; &nbsp;inc(nr_cifre);<br>&nbsp; &nbsp;until intreg =0;<br>&nbsp; &nbsp;nc:=nr_cifre;<br>end;<br>&nbsp; &nbsp;BEGIN<br>&nbsp; &nbsp; &nbsp; ClrScr<br>&nbsp; &nbsp; &nbsp; Cit_tablou(a,n);<br>&nbsp; &nbsp; &nbsp; for i:=1 to n do begin<br>&nbsp; &nbsp; &nbsp; &nbsp; t:=nc(a[i]);<br>&nbsp; &nbsp; &nbsp; &nbsp; inc(b[t]);<br>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; &nbsp; end;<br>&nbsp; &nbsp; &nbsp; for i:=1 to 4 do<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;writeln('Componente cú ',i,'cifre'',b[i];<br>&nbsp; &nbsp;END.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-11-30 10:39:32 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403340224</guid>
      </item>
      <item>
         <title>Resursă: Pag 47</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411950918</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1902774240/c64219e33453789190951a3e2200065f/image.png" />
         <pubDate>2022-12-07 10:06:09 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411950918</guid>
      </item>
      <item>
         <title>Problema</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411954060</link>
         <description><![CDATA[<div><strong>Se dă un vector cu n (1&lt;= n&lt;=100). Să se afișeze componentele de tip întreg<br></strong><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1902774240/ecebda8ad689cad344e19115f5a9a5bf/image.png" />
         <pubDate>2022-12-07 10:09:21 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411954060</guid>
      </item>
      <item>
         <title>Program P1;      Uses crt;      Var x,y: integer;   Begin   Clrscr;   Writeln(&#39;Introduceti doua numere intregi:&#39;);   Write(&#39;x=&#39;); Readln(x);   Write(&#39;y=&#39;); Readln(y);   x:=x+100;   y:=y+100;   Write(&#39;Numerele marite cu 100: &#39;);   Writeln(&#39;x=&#39;,x,&#39; &#39;,&#39;y=&#39;,y);   Readke</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411966447</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2022-12-07 10:21:21 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411966447</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411980987</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1902771736/0c8a1dcf500db7af5d8baf1ecb321fdc/image.png" />
         <pubDate>2022-12-07 10:35:11 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2411980987</guid>
      </item>
      <item>
         <title>ABC Pascal                                   </title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420332687</link>
         <description><![CDATA[<div>&nbsp;var i,n,s : integer;<br><br>f : boolean;<br><br>begin<br><br><br>repeat<br><br>write('Introduceţi un număr natural n=');<br><br>readln(n);<br><br>until n&gt;2;<br><br>if n mod 2=0 then f:=false else f:=true;<br><br>write('s=');<br><br>for i:=1 to n-2 do<br><br>if(not f) and (i mod 2 =0)then write('*',i)<br><br>else<br><br>if f and (i mod 2&lt;&gt;0)then write('*',i);<br><br>writeln('*',n);<br><br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-14 09:52:49 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420332687</guid>
      </item>
      <item>
         <title>RESURSE</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420333048</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://drive.google.com/file/d/1M1j5T_BiHuHz4wq4HEZ-fr0Bbq81IgFH/view?usp=share_link" />
         <pubDate>2022-12-14 09:53:07 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420333048</guid>
      </item>
      <item>
         <title>Problema</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420333711</link>
         <description><![CDATA[<div>Creaţi un program care afişează următoarea funcţie.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-14 09:53:46 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420333711</guid>
      </item>
      <item>
         <title>Rezultatul</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420334539</link>
         <description><![CDATA[<div>Introduceţi un număr natural n=6<br>s=*2*4*6<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-14 09:54:36 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420334539</guid>
      </item>
      <item>
         <title>PROBLEMA</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420336399</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1915615462/1b6405fc08cb60948b80e5176ba7dc54/image.png" />
         <pubDate>2022-12-14 09:56:31 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420336399</guid>
      </item>
      <item>
         <title>Program</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420340366</link>
         <description><![CDATA[<div>program Subpr1;<br>type tablou=array [1..100]of integer;<br>var a:tablou;<br>&nbsp; &nbsp; i,n:byte;<br>procedure cit_tablou(var t:tablou; var dim:byte);<br>var j:byte;<br>begin<br>&nbsp; write('Dimensiunea vectorului:');<br>&nbsp; readln(dim);<br>&nbsp; for j:=1 to dim do begin<br>&nbsp; &nbsp; write('Componenta',j,':');<br>&nbsp; &nbsp; readln(t[j]);<br>&nbsp; end;<br>end;<br>function prim(x:integer):boolean;<br>var j:integer;<br>&nbsp; &nbsp; f:boolean;<br>begin<br>&nbsp; f:=true; j:=1;<br>&nbsp; repeat<br>&nbsp; &nbsp; inc(j);<br>&nbsp; &nbsp; if x mod j=0 then f:=false;<br>&nbsp; until (j&gt;x div 2) or (not f);<br>&nbsp; if x=1 then f:=false;<br>&nbsp; prim:=f;<br>end;<br>Begin<br>&nbsp; Cit_tablou(a,n);<br>&nbsp; for i:=1 to n do<br>&nbsp; &nbsp; if prim(a[i]) then write(a[i],' ');<br>end.</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-12-14 10:00:41 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420340366</guid>
      </item>
      <item>
         <title>Rezultat</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420340911</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1902774240/a2f03660e1f34a2603d1dc48156dda2c/image.png" />
         <pubDate>2022-12-14 10:01:21 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420340911</guid>
      </item>
      <item>
         <title>Resurse</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420342997</link>
         <description><![CDATA[<div>Manual Verde</div>]]></description>
         <enclosure url="https://padlet.com/matematica_salcuta/12real1decembrie/wish/2403297762" />
         <pubDate>2022-12-14 10:03:48 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420342997</guid>
      </item>
      <item>
         <title>REZULTAT</title>
         <author></author>
         <link>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420344189</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1915615462/857916d5e945ad72f641a1e2910d26d1/image.png" />
         <pubDate>2022-12-14 10:05:00 UTC</pubDate>
         <guid>https://padlet.com/matematica_salcuta/12real1decembrie/wish/2420344189</guid>
      </item>
   </channel>
</rss>
