<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Clasa a VIII-a B 2024 by LAURA FERENT</title>
      <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2023-02-08 09:36:45 UTC</pubDate>
      <lastBuildDate>2024-06-14 08:09:27 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Recapitulare - Limbajul C++</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910954427</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/ce647e9c06a7cdc0b07d99c0fe9209bf/image.png" />
         <pubDate>2024-03-08 05:45:42 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910954427</guid>
      </item>
      <item>
         <title>Sintaxa limbajului</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910959119</link>
         <description><![CDATA[<p><strong><mark>Tipuri de date:</mark></strong></p><ul><li><p>numere intregi - <strong>int</strong></p></li><li><p>numere naturale - <strong>unsigned int</strong></p></li><li><p>numere reale - <strong>float</strong></p></li></ul><p><br/></p><p><strong><mark>Declararea unei variabile: </mark></strong></p><p>           <strong>tip_date    nume_variabila;</strong></p><p>Ex:  </p><p>              int a;</p><p>              unsigned int x,y;</p><p>              float c;</p><p><br/></p><p><strong><mark>Citirea datelor</mark></strong> =&gt; <strong>cin&gt;&gt;nume_variabila;</strong></p><p>Ex:  cin&gt;&gt;a;  cin&gt;&gt;x&gt;&gt;y&gt;&gt;z;</p><p><br/></p><p><strong><mark>Afisarea datelor</mark></strong> =&gt; <strong>cout&lt;&lt;nume_variabila;</strong></p><p>Ex:  cout&lt;&lt;a;</p><p>       cout&lt;&lt;x&lt;&lt;y;   //x=13  y=25  =&gt;1325</p><p>       cout&lt;&lt;x&lt;&lt;" "&lt;&lt;y;  // 13 25</p><p>       cout&lt;&lt;x&lt;&lt;endl&lt;&lt;y;   //  13</p><p>                                                  25</p><p><br/></p><p><strong><mark>Instructiunea de atribuire</mark></strong> =&gt; <strong>nume_variabila=valoare/expresie;</strong></p><p>Ex:    a=5;</p><p>         b=a+2*c;</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-08 05:51:15 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910959119</guid>
      </item>
      <item>
         <title>Aplicatie</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910969504</link>
         <description><![CDATA[<p>Se citesc de la tastatura 2 numere reale a si b, reprezentand lungimea si latimea unui dreptunghi. Sa se calculeze si afiseze aria si perimetrul acestuia.</p><p><br/></p><p><strong>#include&lt;iostream&gt;</strong></p><p><strong>int main()</strong></p><p><strong>{</strong></p><p><strong>      float a,b,P,A;</strong></p><p><strong>      cin&gt;&gt;a&gt;&gt;b;</strong></p><p><strong>      P=2*a+2*b;</strong></p><p><strong>      A=a*b;</strong></p><p><strong>      cout&lt;&lt;P&lt;&lt;" "&lt;&lt;A;</strong></p><p><strong>       return 0;</strong></p><p><strong>}</strong></p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-08 06:03:33 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910969504</guid>
      </item>
      <item>
         <title>TEMA</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910993139</link>
         <description><![CDATA[<p>1) Sa se calculeze aria unui romb  A, stiind diagonalele d1 si d2.</p><p>2) Sa se calculeze aria A si perimetrul P al unui patrat, stiind latura a.</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-08 06:35:30 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2910993139</guid>
      </item>
      <item>
         <title>15.03.2024     Corectarea temei</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920103448</link>
         <description><![CDATA[<p>1)</p><p><br/></p><p><strong>#include&lt;iostream&gt;</strong></p><p><strong>int main()</strong></p><p><strong>{</strong></p><p><strong>      float d1,d2,A;</strong></p><p><strong>      cin&gt;&gt;d1&gt;&gt;d2;</strong></p><p><strong>      A=d1*d2/2;</strong></p><p><strong>      cout&lt;&lt;A;</strong></p><p><strong>       return 0;</strong></p><p><strong>}</strong></p><p><br/></p><p><strong>2)</strong></p><p><br/></p><p><strong>#include&lt;iostream&gt;</strong></p><p><strong>int main()</strong></p><p><strong>{</strong></p><p><strong>      float a,P,A;</strong></p><p><strong>      cin&gt;&gt;a;</strong></p><p><strong>      P=4*a;</strong></p><p><strong>      A=a*a;</strong></p><p><strong>      cout&lt;&lt;P&lt;&lt;" "&lt;&lt;A;</strong></p><p><strong>       return 0;</strong></p><p><strong>}</strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-15 05:45:59 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920103448</guid>
      </item>
      <item>
         <title>INSTRUCTIUNEA IF</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920109279</link>
         <description><![CDATA[<p><strong>SINTAXA<br><mark>if (conditie_logica)<br>&nbsp; &nbsp; &nbsp;instructiune1;<br>else <br>&nbsp; &nbsp; &nbsp;instructiune2;<br><br>if (conditie_logica)<br>&nbsp; &nbsp; &nbsp;instructiune1;</mark><br>Instructiunea IF&nbsp; se executa astfel:</strong></p><ul><li><p><strong>se evalueaza conditia logica</strong></p></li><li><p><strong>daca este adevarata se executa instructiune1</strong></p></li><li><p><strong>daca este falsa se executa instructiune 2 (niciodata ambele)</strong></p></li></ul><p><strong>OBS - Daca ramura altfel (else)&nbsp; lipseste si conditia logica este falsa, nu se executa nimic!</strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-15 05:51:49 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920109279</guid>
      </item>
      <item>
         <title>FUNCTII  MATEMATICE</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920116845</link>
         <description><![CDATA[<p><strong>abs(x)=calculeaza modulul lui x<br>sqrt(x)=calculeaza radical din x<br>pow(x,y)=calculeaza x la puterea y<br>floor(x)=calculeaza partea intreaga a lui x<br>ceil(x)=calculeaza cel mai apropiat intreg &gt;=x</strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-15 05:59:39 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920116845</guid>
      </item>
      <item>
         <title>CONDITII LOGICE</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920121125</link>
         <description><![CDATA[<p><strong><mark>Conditii logice:</mark></strong></p><ul><li><p><strong>x este par: x%2==0</strong></p></li><li><p><strong>x este impar:&nbsp; x%2==1 sau&nbsp; x%2!=0</strong></p></li><li><p><strong>x este pozitiv: x&gt;=0</strong></p></li><li><p><strong>x este negativ: x&lt;0</strong></p></li><li><p><strong>x apartine [a,b]: x&gt;=a &amp;&amp; x&lt;=b</strong></p></li><li><p><strong>x nu apartine [a,b]: x&lt;a || x&gt;b</strong></p></li><li><p><strong>x este patrat perfect:&nbsp; floor(sqrt(x))=sqrt(x)</strong></p></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-15 06:04:17 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920121125</guid>
      </item>
      <item>
         <title>Aplicatii</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920124644</link>
         <description><![CDATA[<p>1) Se citeste un numar intreg  x de la tastatura. Sa se afiseze mesajul "da" daca este pozitiv si mesajul "nu" daca este negativ.</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-15 06:08:26 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920124644</guid>
      </item>
      <item>
         <title>TEMA</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920162034</link>
         <description><![CDATA[<p>Date de intrare - r,h</p><p>Date de iesire - V</p><p><br/></p><p>Pentru pi =&gt; folosim valoarea 3.14</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/fa4b61215d948ead4d9612dc83e3e60f/image.png" />
         <pubDate>2024-03-15 06:53:15 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2920162034</guid>
      </item>
      <item>
         <title>22.03.2024 Corectarea temei</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929727588</link>
         <description><![CDATA[<p>1)</p><p><strong>#include&lt;iostream&gt;</strong></p><p><strong>int main()</strong></p><p><strong>{</strong></p><p><strong>      float r,h,v;</strong></p><p><strong>      cin&gt;&gt;r&gt;&gt;h;</strong></p><p><strong>      v=3.14*r*r*h;</strong></p><p><strong>      cout&lt;&lt;v;</strong></p><p><strong>       return 0;</strong></p><p><strong>}</strong></p><p><br/></p><p>2)</p><p><strong>#include&lt;iostream&gt;</strong></p><p><strong>int main()</strong></p><p><strong>{</strong></p><p><strong>      float r,h,v;</strong></p><p><strong>      cin&gt;&gt;r&gt;&gt;h;</strong></p><p><strong>      v=3.14*r*r*h/3;</strong></p><p><strong>      cout&lt;&lt;v;</strong></p><p><strong>       return 0;</strong></p><p><strong>}</strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-22 05:57:57 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929727588</guid>
      </item>
      <item>
         <title></title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929735456</link>
         <description><![CDATA[<p>1) Se citeste un numar intreg  x de la tastatura. Sa se afiseze mesajul "da" daca este pozitiv si mesajul "nu" daca este negativ.</p><p><br/></p><p><strong>#include&lt;iostream&gt;</strong></p><p><strong>int main()</strong></p><p><strong>{  </strong></p><p><strong>      int x;</strong></p><p><strong>      cin&gt;&gt;x;</strong></p><p><strong>       if(x&gt;=0)</strong></p><p><strong>            cout&lt;&lt;"da";</strong></p><p><strong>       else</strong></p><p><strong>           cout&lt;&lt;"nu";</strong></p><p><strong>      return 0;</strong></p><p><strong>}</strong></p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-22 06:06:32 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929735456</guid>
      </item>
      <item>
         <title>Exercitii</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929759207</link>
         <description><![CDATA[<p>1) Se citeste un numar natural  y de la tastatura. Sa se afiseze mesajul "numar par" daca este par si mesajul "numar impar" daca este impar.</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-22 06:33:29 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929759207</guid>
      </item>
      <item>
         <title>TEMA</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929772222</link>
         <description><![CDATA[<p>1) Se citeste un numar natural  x de la tastatura. Sa se afiseze mesajul "da" daca este patrat perfect si mesajul "nu" daca nu este patrat perfect.</p><p><br/></p><p>2) Se citeste un numar intreg  x de la tastatura. Sa se afiseze mesajul "da" daca numarul apartine intervalului inchis [a,b] si mesajul "nu" daca nu apartine intervalui ( a si b se citesc de la tastatura).</p><p> if(x&gt;=a &amp;&amp; x&lt;=b)</p><p>      cout&lt;&lt;"da";</p><p> else cout&lt;&lt;"nu";</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-03-22 06:50:00 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2929772222</guid>
      </item>
      <item>
         <title>05.04.2024  Fisa de lucru</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2944135349</link>
         <description><![CDATA[<p>1) Evaluati urmatoarele expresii:</p><p> floor(5.25)+sqrt(16)=5+4=9</p><p>ceil(7.18)+abs(-5)=8+5=13</p><p>pow(3,2)+ floor(5.25)=9+5=14</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-04-05 04:59:55 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2944135349</guid>
      </item>
      <item>
         <title>Alegeti variata corecta:</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2944143523</link>
         <description><![CDATA[<p>1)Variabila x este de tip real. Care dintre următoarele expresii C/C++ are valoarea 1 (este adevarata) dacă şi numai dacă numărul real memorat în variabila x aparţine intervalului (5,8]? </p><p><br/></p><p><br/></p><p> a. (x&lt;8) &amp;&amp; (x&gt;=5) </p><p>b. (x&lt;=8) || (x&gt;5) </p><p>c. (x&gt;8) || (x&lt;=5) </p><p><strong><mark>d. (x&lt;=8) &amp;&amp; (x&gt;5)</mark></strong></p><p><br/></p><p>2) Care este rezultatul evaluării expresiei C/C++ alăturate?11*3/2*2/3 =33/2*2/3=16*2/3=32/3=10</p><p>a. 2 </p><p><strong><mark>b. 10 </mark></strong></p><p>c. 2.75 </p><p>d. 11</p><p><br/></p><p>3)Variabila x este de tip real. Care dintre următoarele expresii C/C++ are valoarea 1 dacă şi numai dacă numărul real memorat în variabila x nu aparţine intervalului (2,9]? </p><p>a. (x&gt;2) &amp;&amp; (x&lt;=9) </p><p>b. (x&lt;=2) &amp;&amp; (x&gt;9) </p><p><strong><mark>c. (x&lt;=2) || (x&gt;9) </mark></strong></p><p>d. (x&lt;2) || (x&gt;9)</p><p><br/></p><p>4)Variabilele x şi y sunt de tip întreg, x memorând valoarea 8, iar y valoarea 6. Care dintre expresiile C/C++ de mai jos are valoarea 0 (este falsa)? </p><p>a. 3*x-4*y==0  =&gt; 3*8-4*6==0  =&gt; 24-24==0  =&gt; 0==0 Adev.</p><p>b. (x+y)/2 &gt; x%y+1  =&gt; 14/2&gt;2+1 =&gt; 7&gt;3 =&gt; Adev</p><p>c. !(x/2+2==y)  =&gt; <strong><mark>!(4+2==6)  =&gt; !(6==6)  =&gt; !(A)=F</mark></strong></p><p>d. x-y+3!=0  =&gt; 8-6+3!=0  =&gt;  5!=0 Adev</p><p><br/></p><p>5) Care dintre următoarele instrucţiuni C/C++ determină inserarea cifrei 7 în faţa ultimei cifre a unui număr natural, cu exact 3 cifre, memorat în variabila x? </p><p>x=512  =&gt; 5172</p><p><br/></p><p>a. <strong><mark>x=(x/10*10+7)*10+x%10; </mark></strong></p><p>     x=(512/10*10+7)*10+512%10=(51*10+7)*10+2=517*10+2=5172</p><p>b. x=x/10+7+x%10; </p><p>   x=512/10+7+512%10=51+7+2=60</p><p>c. x=(x%10*10+7)*10+x/10; </p><p>     x=(2*10+7)*10+51=270+51=321</p><p>d. x=(x/10+7)*10+x%10;</p><p>     x=(51+7)*10+2=580+2=582</p>]]></description>
         <enclosure url="" />
         <pubDate>2024-04-05 05:07:34 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2944143523</guid>
      </item>
      <item>
         <title>Problema - completati instructiunile lipsa:</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2944180654</link>
         <description><![CDATA[<p>Scrieti un program C++ care citeste de la tastatura 2 nr naturale a si b si calculeaza si afiseaza media lor geometrica.</p><p><br/></p><p><strong>#include&lt;.......................&gt;    =&gt; <mark>iostream</mark></strong></p><p><strong>#..................&lt;math.h&gt;           =&gt; <mark>include</mark></strong></p><p><strong>int ...........()                                 =&gt; <mark>main</mark></strong></p><p><strong>{</strong></p><p><strong>     ..................................  a,b;   =&gt; <mark>unsigned int</mark></strong></p><p><strong>     ................. mg;                        =&gt; <mark>float</mark></strong></p><p><strong>     cin&gt;&gt;.................;                    =&gt;<mark> a&gt;&gt;b</mark></strong></p><p><strong>     mg=....................;                   =&gt; <mark>sqrt(a*b)</mark></strong></p><p><strong>     cout&lt;&lt;.................;                 =&gt; <mark>mg</mark></strong></p><p><strong>     ............................;                  =&gt; <mark>return 0</mark></strong></p><p><strong>}</strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-04-05 05:46:37 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2944180654</guid>
      </item>
      <item>
         <title>TEST  NR1-NR2</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2952087965</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/b1293158009a09733528438435b889c0/image.png" />
         <pubDate>2024-04-12 04:40:16 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2952087965</guid>
      </item>
      <item>
         <title>TEST NR3-NR4</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2952088543</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/60f3f3b4aa54c65fc68755ffc7e9912a/image.png" />
         <pubDate>2024-04-12 04:40:49 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2952088543</guid>
      </item>
      <item>
         <title>19.04.2024   Siruri de valori</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2961402279</link>
         <description><![CDATA[<ul><li><p>Șirul de valori reprezintă o serie de numere aleatorii sau care poate fi generat pe baza unor proprietăți. </p></li><li><p>Ex:</p><ul><li><p>4,7,9,12,14,54,32 =&gt; sir de nr cu valorii aleatorii</p></li><li><p>2,4,6,8,10  =&gt;sirul primelor 5 nr pare</p></li></ul></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2024-04-19 05:03:04 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2961402279</guid>
      </item>
      <item>
         <title>SIRURI DE VALORI GENERATE</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2961407662</link>
         <description><![CDATA[<ul><li><p>Șirurile de valori generate se obțin prin calcularea termenilor șirului, respectându-se o regulă. </p></li><li><p>Valoarea unui termen din șir se poate genera: în funcție de poziția sa în șir, cu ajutorul unor termeni care îl preced, cu ajutorul unei condiții date etc.</p></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2024-04-19 05:07:17 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2961407662</guid>
      </item>
      <item>
         <title>SIRUL LUI FIBONACCI</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2961412009</link>
         <description><![CDATA[<p>Sa se genereze primii n termeni ai sirului lui Fibonacci.</p><p>f1=1    f2=1   f3=f1+f2</p><p>n=10  =&gt;1,1,2,3,5,8,13,21,34,55</p><p><br></p><p>#include&lt;iostream&gt;</p><p> int main()</p><p>{</p><p>   unsigned int n,f1,f2,f3;</p><p>   cin&gt;&gt;n;</p><p>   f1=1;f2=1;</p><p>   cout&lt;&lt;f1&lt;&lt;" "&lt;&lt;f2&lt;&lt;" ";</p><p>   for(i=3;i&lt;=n;i++)</p><p>      {f3=f1+f2;</p><p>        cout&lt;&lt;f3&lt;&lt;" ";</p><p>        f1=f2;f2=f3;</p><p>     }</p><p>  return 0;</p><p>}</p><p>     </p><p><br></p><p><br></p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-04-19 05:10:39 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2961412009</guid>
      </item>
      <item>
         <title>10.05.2024  -   Prelucrarea unui sir de valori cand se cunoaste numarul acestora</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2987726130</link>
         <description><![CDATA[<p><strong>Enuntul problemei:<br>&nbsp;"se citeste de la tastatura un numar n si apoi n numere naturale/intregi/reale. Sa se calculeze si sa se afiseze......"<br><br>Ex:&nbsp; n=5&nbsp; se citesc numerele 45&nbsp;    12    &nbsp; 9&nbsp; &nbsp;  78&nbsp;    21     =&gt;x<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; </strong>i=1  i=2  i=3  i=4     i=5<strong><br><br><mark>cin&gt;&gt;n;<br>for(i=1;i&lt;=n;i++)<br>&nbsp; { &nbsp; cin&gt;&gt;x;<br>&nbsp; &nbsp; &nbsp; &nbsp;//prelucreaza x<br>&nbsp; }</mark></strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-05-10 05:14:44 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2987726130</guid>
      </item>
      <item>
         <title>ALGORITMI ELEMENTARI</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2987740587</link>
         <description><![CDATA[<p><strong><mark>Calculul unei sume<br>s=0;<br>Intr-o structura repetitiva (for,while):&nbsp; s=s+</mark><em><mark>ceva</mark></em></strong></p><p><br/></p><p><strong><mark>Calculul unui produs</mark><br><mark>p=1;<br>Intr-o repetitie: p=p*</mark><em><mark>ceva</mark></em><mark>;</mark></strong></p><p><br/></p><p><strong><mark>Numararea unor valori<br>k=0;<br>Intr-o repetitie:&nbsp; k=k+1;</mark></strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-05-10 05:25:06 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2987740587</guid>
      </item>
      <item>
         <title>17.05.2024  - Prelucrarea unui sir de valori cand nu se cunoaste numarul acestora</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2997072236</link>
         <description><![CDATA[<p><strong>Enuntul problemei:<br>&nbsp;"se citesc de la tastatura numere naturale/intregi/reale pana la intalnirea valorii 0. Sa se calculeze si sa se afiseze......"</strong></p><p><br/></p><p><strong>Ex: 12&nbsp; 45&nbsp; 9&nbsp; 16&nbsp; 23&nbsp; 0&nbsp; =&gt; 5 numere<br>&nbsp; &nbsp; &nbsp; &nbsp;1 2 3 4 5 6 7 8 9 10 0&nbsp; =&gt; 10 numere<br><br><mark>cin&gt;&gt;x;<br>while(x!=0)<br>&nbsp;{ &nbsp;<br>&nbsp; &nbsp; &nbsp; &nbsp; //prelucreaza x<br>&nbsp; &nbsp; &nbsp;cin&gt;&gt;x;<br>&nbsp;}</mark><br></strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-05-17 05:04:14 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2997072236</guid>
      </item>
      <item>
         <title>Probleme</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2997108500</link>
         <description><![CDATA[<p><strong>Se citesc numere intregi pana la intalnirea valorii 0. Sa se calculeze suma lor.<br>Ex: 5 1 2 4 0&nbsp; =&gt; se afiseaza s=5+1+2+4=12</strong></p><p><br/></p><p><strong>#include&lt;iostream.h&gt;<br>int main()<br>{<br>&nbsp; &nbsp; int s,x;<br>&nbsp; &nbsp; &nbsp;s=0;<br>&nbsp; &nbsp; cin&gt;&gt;x;<br>&nbsp; while(x!=0)<br>&nbsp; &nbsp;{<br>&nbsp; &nbsp; &nbsp; s=s+x;<br>&nbsp; &nbsp; &nbsp;cin&gt;&gt;x;<br>&nbsp; }<br>cout&lt;&lt;s;<br>  return 0;}<br><br>&nbsp; &nbsp;&nbsp;<br></strong></p>]]></description>
         <enclosure url="" />
         <pubDate>2024-05-17 05:29:36 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/2997108500</guid>
      </item>
      <item>
         <title></title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027993998</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/f906451923d1121d89867db9c6eeb74d/WhatsApp_Image_2024_06_14_at_09_48_36__1_.jpeg" />
         <pubDate>2024-06-14 06:53:43 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027993998</guid>
      </item>
      <item>
         <title></title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027994255</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/bcd9781fe1f09ffdd130592722e8ffe0/WhatsApp_Image_2024_06_14_at_09_48_36.jpeg" />
         <pubDate>2024-06-14 06:53:56 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027994255</guid>
      </item>
      <item>
         <title></title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027994545</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/75f84a056cff0119f33bd80ede82d1d0/WhatsApp_Image_2024_06_14_at_09_48_37.jpeg" />
         <pubDate>2024-06-14 06:54:10 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027994545</guid>
      </item>
      <item>
         <title>Mate</title>
         <author>lauraferent</author>
         <link>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027995122</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1629346364/a0d2b41ca99c73413ca9d34c9565ea90/EN_VIII_matematica_2022_var_model.pdf" />
         <pubDate>2024-06-14 06:54:48 UTC</pubDate>
         <guid>https://padlet.com/lauraferent/qfn62tq3xgjzuh6x/wish/3027995122</guid>
      </item>
   </channel>
</rss>
