<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>APLICATIA 9 by Lungescu Violeta</title>
      <link>https://padlet.com/violetalungescu/aplicatia9a</link>
      <description>Sa se scrie un algoritm care verifica daca un triunghi cu laturile a, b, c numere reale este triunghi isoscel.</description>
      <language>en-us</language>
      <pubDate>2015-12-03 20:16:34 UTC</pubDate>
      <lastBuildDate>2025-04-24 12:21:22 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Gadinariu Vladimir cls a 7-a &amp;nbsp; OK!</title>
         <author></author>
         <link>https://padlet.com/violetalungescu/aplicatia9a/wish/84871496</link>
         <description><![CDATA[<p>#include &lt;iostream&gt;<br>using namespace std;<br>int main()<br>{<br>    float a, b, c; // cele 3 laturi<br><br>    // CITIREA DATELOR<br>    cout &lt;&lt; "a=";<br>    cin &gt;&gt; a;<br>    cout &lt;&lt; "b=";<br>    cin &gt;&gt; b;<br>    cout &lt;&lt; "c=";<br>    cin &gt;&gt; c;<br><br>    // ESTE TRIUNGHI?<br>    if((a &lt; b + c)&amp;&amp;(b &lt; a + c)&amp;&amp;(c &lt; a + b))<br>        {<br>            // ESTE TRIUNGHI. DE CARE?<br>            if((a == b)&amp;&amp;(b == c))<br>            {<br>                cout &lt;&lt; "(" &lt;&lt; a &lt;&lt; ", " &lt;&lt; b &lt;&lt; ", " &lt;&lt; c &lt;&lt; ") - triunghi echilateral";<br>            }<br>            else<br>                if((a == b)||(b == c)||(a == c))<br>                {<br>                    cout &lt;&lt; "(" &lt;&lt; a &lt;&lt; ", " &lt;&lt; b &lt;&lt; ", " &lt;&lt; c &lt;&lt; ") - triunghi isoscel";<br>                }<br>                else<br>                    if((a*a + b*b == c*c)||(a*a + c*c == b*b)||(b*b + c*c == a*a))<br>                    {<br>                        cout &lt;&lt; "(" &lt;&lt; a &lt;&lt; ", " &lt;&lt; b &lt;&lt; ", " &lt;&lt; c &lt;&lt; ") - triunghi dreptunghic";<br>                    }<br>                    else<br>                        cout &lt;&lt; "(" &lt;&lt; a &lt;&lt; ", " &lt;&lt; b &lt;&lt; ", " &lt;&lt; c &lt;&lt; ") - triunghi oarecare";<br><br>        }<br>    else<br>        cout &lt;&lt; "(" &lt;&lt; a &lt;&lt; ", " &lt;&lt; b &lt;&lt; ", " &lt;&lt; c &lt;&lt; ") - nu este triunghi";<br><br>    return 0;<br>}<br></p>]]></description>
         <enclosure url="" />
         <pubDate>2015-12-04 06:13:41 UTC</pubDate>
         <guid>https://padlet.com/violetalungescu/aplicatia9a/wish/84871496</guid>
      </item>
      <item>
         <title>Anghelache Teodora clasa 7A &amp;nbsp; &amp;nbsp; ???</title>
         <author>teodora_anghelache</author>
         <link>https://padlet.com/violetalungescu/aplicatia9a/wish/85104005</link>
         <description><![CDATA[<p>BEGIN </p><p>REAL a, b, c</p><p>READ a, b, c</p><p>IF a=b  THEN WRITE "DA"</p><p>              ELSE  WRITE "NU"      ?</p><p>     IF b=c THEN WRITE "DA"</p><p>                 ELSE WRITE "NU"       ?</p><p>          IF c=a THEN WRITE "DA"</p><p>                     ELSE WRITE "NU            </p><p>ENDIF</p><p>END</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-12-06 10:50:17 UTC</pubDate>
         <guid>https://padlet.com/violetalungescu/aplicatia9a/wish/85104005</guid>
      </item>
      <item>
         <title>Bosneanu Antonio cls vii a &amp;nbsp; &amp;nbsp;NU!!!</title>
         <author>teodora_anghelache</author>
         <link>https://padlet.com/violetalungescu/aplicatia9a/wish/85104178</link>
         <description><![CDATA[<p>Begin </p><p>Integer a,b,c</p><p>abc este isoscel? </p><p>Write da sau nu</p><p>End</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-12-06 10:56:09 UTC</pubDate>
         <guid>https://padlet.com/violetalungescu/aplicatia9a/wish/85104178</guid>
      </item>
      <item>
         <title>Nicolae Paul 7 A &amp;nbsp; &amp;nbsp;OK!</title>
         <author></author>
         <link>https://padlet.com/violetalungescu/aplicatia9a/wish/85223816</link>
         <description><![CDATA[<p>//padlet 8A, uitasem sa il fac...:[ `</p>#include &lt;iostream&gt;
using namespace std;

int main(){
int a, b, c, x;
cin &gt;&gt; a &gt;&gt; b &gt;&gt; c;x = a;
a = b;
b = c;
c = x;
cout &lt;&lt; a &lt;&lt; endl;cout &lt;&lt; b &lt;&lt; endl;
cout &lt;&lt; c &lt;&lt; endl;
}<p>*******************</p><p>*******************</p><p>*******************</p><p>//padlet 9a, c# </p><p>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace teme
{
        class padlet9a
        {
        
        public object triunghiIsoscel(double L1, double L2, double L3)
        {
            if ( (L1 == L2) || (L1 == L3) || (L2 == L3) )
            {
                if (L1 == L2 &amp;&amp; L2 == L3 &amp;&amp; L1 == L3)
                {
                    return "Triunghiul este echilateral";
                }
                else
                {
                    return "Triunghiul este isoscel";
                }
            }
            else
            {
                return "Programul functioneaza doar cu numere zecimale!";
            }
            return 0;
        }
            static void Main(string[] args)
            {
            dynamic a, b, c;
            dynamic tema = new padlet9a();
            Console.WriteLine("Introdu cele 3 lungimi ale laturilor triunghiului tau.");
            a = Console.ReadLine();
            b = Console.ReadLine();
            c = Console.ReadLine();
            tema.triunghiIsoscel(a, b, c);
            Console.ReadLine();
            Console.ReadLine();
            Console.ReadLine();
            Console.ReadLine();          
        }
        }
    }</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-12-07 14:38:33 UTC</pubDate>
         <guid>https://padlet.com/violetalungescu/aplicatia9a/wish/85223816</guid>
      </item>
      <item>
         <title>Popescu Diana, clasa a7aA &amp;nbsp; &amp;nbsp;NU!!!</title>
         <author></author>
         <link>https://padlet.com/violetalungescu/aplicatia9a/wish/85917376</link>
         <description><![CDATA[<p>BEGIN</p><p>INTEGER A,B,C</p><p>READ A,B,C,</p><p>IF A:=C&lt;&gt;B THEN WRITE 'DA'<br></p><p>ELSE A:=B&lt;&gt;C THEN WRITE 'DA'</p><p>ELSE B:=C&lt;&gt;A THEN WRITE 'DA'</p><p>ELSE B&lt;&gt;C&lt;&gt;A THEN WRITE 'NU'</p><p>ENDIF</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-12-10 15:19:38 UTC</pubDate>
         <guid>https://padlet.com/violetalungescu/aplicatia9a/wish/85917376</guid>
      </item>
      <item>
         <title>Mogos Daria Ana-Maria cls 7A &amp;nbsp;OK!</title>
         <author>paulyxfifa</author>
         <link>https://padlet.com/violetalungescu/aplicatia9a/wish/85958686</link>
         <description><![CDATA[<p>BEGIN <br>INTEGER a,b,c <br>READ a,b,c <br>IF a=b THEN WRITE YES <br></p><p>              ELSE IF b=c THEN WRITE YES <br>               ELSE IF a=c  THEN WRITE YES<br>                ELSE WRITE NO <br>END  <br>                                       </p>]]></description>
         <enclosure url="" />
         <pubDate>2015-12-10 17:18:28 UTC</pubDate>
         <guid>https://padlet.com/violetalungescu/aplicatia9a/wish/85958686</guid>
      </item>
   </channel>
</rss>
