<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>müthiş padlet&#39;im by Şeyma Maraz</title>
      <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt</link>
      <description>Büyük düşlerle yapıldı</description>
      <language>en-us</language>
      <pubDate>2022-03-21 10:07:12 UTC</pubDate>
      <lastBuildDate>2022-03-21 17:18:02 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Basit bir Araba sınıfı oluşturarak, birden fazla nesne tanımlaması yapmak.</title>
         <author>seymaraz1</author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104979166</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;</div><div>#include &lt;cstring&gt;</div><div><strong>using namespace std</strong>;</div><div>// Bazi niteliklere sahip bir Araba sinifi olusturun</div><div><strong>class………… </strong> {</div><div><strong>public</strong>:</div><div>&nbsp; &nbsp; <strong>char </strong>marka[30];</div><div>&nbsp; &nbsp; <strong>char </strong>model[30];</div><div>&nbsp; &nbsp; <strong>int </strong>yil;</div><div>&nbsp; &nbsp; <strong>int </strong>fiyat;</div><div>};</div><div><br></div><div><strong>int </strong>main() {</div><div>&nbsp; &nbsp; // Ilk Araba nesnesini olusturun</div><div>&nbsp; &nbsp; Araba araba1;</div><div>&nbsp; &nbsp; strcpy(araba1………., "……..");</div><div>&nbsp; &nbsp; strcpy(araba1………., "………");</div><div>&nbsp; &nbsp; araba1.yil =……. ;</div><div>&nbsp; &nbsp; araba1.fiyat =…… ;</div><div><br></div><div>&nbsp; &nbsp; // Ikinci Araba nesnesini olusturun</div><div>&nbsp; &nbsp; Araba araba2;</div><div>&nbsp; &nbsp; strcpy(araba2.marka, "");</div><div>&nbsp; &nbsp; strcpy(araba2.model, "");</div><div>&nbsp; &nbsp; araba2.yil = ;</div><div>&nbsp; &nbsp; araba2.fiyat =;</div><div><br><br></div><div>&nbsp; &nbsp; // Nesnelerin ozelliklerini yazdirin</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; "Araba 1: " &lt;&lt; araba1.marka &lt;&lt; ", " &lt;&lt; araba1.model &lt;&lt; ", " &lt;&lt; araba1.yil &lt;&lt; ", " &lt;&lt; araba1.fiyat &lt;&lt; " \n";</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; "Araba 2: " &lt;&lt; araba2.marka &lt;&lt; ", " &lt;&lt; araba2.model &lt;&lt; ", " &lt;&lt; araba2.yil &lt;&lt; ", " &lt;&lt; araba2.fiyat &lt;&lt; " \n";</div><div>&nbsp; &nbsp; &nbsp;<strong>return </strong>0;</div><div>}</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 10:11:38 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104979166</guid>
      </item>
      <item>
         <title>Araba sınıfına bir fonksiyon ekleme ve nesne tanımlama.</title>
         <author>seymaraz1</author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104996668</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;</div><div>#include &lt;cstring&gt;</div><div><strong>using namespace std</strong>;</div><div><strong>class ……….</strong> {</div><div><strong>public</strong>:</div><div>&nbsp; &nbsp; <strong>char </strong>marka[30];</div><div>&nbsp; &nbsp; <strong>char </strong>model[30];</div><div>&nbsp; &nbsp; <strong>int </strong>hiz;</div><div>&nbsp; &nbsp; <strong>int </strong>hizlan(<strong>int </strong>x);</div><div>};</div><div><br></div><div><strong>int </strong>Araba::hizlan(<strong>int </strong>x) {</div><div>&nbsp; <strong>return </strong>hiz + x;</div><div>}</div><div><br></div><div><strong>int </strong>main() {</div><div>&nbsp; &nbsp; Araba araba1; // Araba nesnesini olusturun</div><div>&nbsp; &nbsp; strcpy(araba1…….., "");</div><div>&nbsp; &nbsp; strcpy(araba1……..,., "………");</div><div>&nbsp; &nbsp; araba1.hiz = ………;</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; "Araba: " &lt;&lt; araba1.marka &lt;&lt; " " &lt;&lt; araba1.model &lt;&lt; " \n";</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; "Yeni Hiz: " &lt;&lt; araba1.hizlan(30); // Fonksiyonu parametre ile cagirin</div><div>&nbsp; &nbsp; <strong>return </strong>0;</div><div>}</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 10:23:46 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104996668</guid>
      </item>
      <item>
         <title>Araba sınıfına sınıf içi bir yapıcı fonksiyon ekleme ve nesne tanımlama.</title>
         <author>seymaraz1</author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104997345</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;</div><div>#include &lt;cstring&gt;</div><div><strong>using namespace std</strong>;</div><div><strong>class ………..</strong> {</div><div><strong>public</strong>:</div><div>&nbsp; &nbsp; <strong>string </strong>marka;</div><div>&nbsp; &nbsp; <strong>string </strong>model;</div><div>&nbsp; &nbsp; <strong>int </strong>yil;</div><div>&nbsp; &nbsp; <strong>int </strong>fiyat;</div><div>&nbsp; &nbsp; //Parametreli sinif ici kurucu fonksiyon</div><div>&nbsp; &nbsp; Araba(<strong>string </strong>x_marka, <strong>string </strong>x_model, <strong>int </strong>x_yil, <strong>int </strong>x_fiyat) {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; marka = x_marka;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; model = x_model;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; yil = x_yil;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; fiyat = x_fiyat;</div><div>&nbsp; &nbsp; }</div><div>};</div><div><br></div><div><strong>int </strong>main() {</div><div>&nbsp; &nbsp; // Kurucu fonksiyonu farkli degerlerle cagirarak Araba nesneleri olusturma</div><div>&nbsp; &nbsp; Araba araba1("…….", "…….", ………,……….);</div><div>&nbsp; &nbsp; Araba araba2("………", “………..", ……….., ………..);</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp; // Degerleri yazdirma</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; araba1.marka &lt;&lt; " " &lt;&lt; araba1.model &lt;&lt; " " &lt;&lt; araba1.yil &lt;&lt; " " &lt;&lt; araba1.fiyat &lt;&lt; "\n";</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; araba2.marka &lt;&lt; " " &lt;&lt; araba2.model &lt;&lt; " " &lt;&lt; araba2.yil &lt;&lt; " " &lt;&lt; araba2.fiyat &lt;&lt; "\n";</div><div>&nbsp; &nbsp; &nbsp; &nbsp;<strong>return </strong>0;</div><div>}</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 10:24:15 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104997345</guid>
      </item>
      <item>
         <title>Araba sınıfına sınıf dışı bir yapıcı fonksiyon ekleme ve nesne tanımlama.</title>
         <author>seymaraz1</author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104998122</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;</div><div>#include &lt;cstring&gt;</div><div><strong>using namespace std</strong>;</div><div><strong>class </strong>&nbsp;{</div><div><strong>public</strong>:</div><div>&nbsp; &nbsp; <strong>string </strong>marka;</div><div>&nbsp; &nbsp; <strong>string </strong>model;</div><div>&nbsp; &nbsp; <strong>int </strong>yil;</div><div>&nbsp; &nbsp; <strong>int </strong>fiyat;</div><div>&nbsp; &nbsp; // Yapici fonksiyon bildirimi</div><div>&nbsp; &nbsp; Araba(<strong>string </strong>x_marka, <strong>string </strong>x_model, <strong>int </strong>x_yil, <strong>int </strong>x_fiyat);</div><div>};</div><div>//Sinif disinda kurucu fonksiyon tanimlama</div><div>Araba::Araba(<strong>string </strong>x_marka, <strong>string </strong>x_model, <strong>int </strong>x_yil, <strong>int </strong>x_fiyat) {</div><div>&nbsp; &nbsp; marka = x_marka;</div><div>&nbsp; &nbsp; model = x_model;</div><div>&nbsp; &nbsp; yil = x_yil;</div><div>&nbsp; &nbsp; fiyat = x_fiyat;</div><div>}</div><div><br></div><div><strong>int </strong>main() {</div><div>&nbsp; &nbsp; // Kurucu fonksiyonu farkli degerlerle cagirarak Araba nesneleri olusturma</div><div>&nbsp; &nbsp; Araba araba1("……..", "………", ……., );</div><div>&nbsp; &nbsp; Araba araba2("……", “……..", ……, …….);</div><div><br></div><div>&nbsp; &nbsp; // Degerleri yazdirma</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; araba1.marka &lt;&lt; " " &lt;&lt; araba1.model &lt;&lt; " " &lt;&lt; araba1.yil &lt;&lt; " " &lt;&lt; araba1.fiyat &lt;&lt; "\n";</div><div>&nbsp; &nbsp; <strong>cout </strong>&lt;&lt; araba2.marka &lt;&lt; " " &lt;&lt; araba2.model &lt;&lt; " " &lt;&lt; araba2.yil &lt;&lt; " " &lt;&lt; araba2.fiyat &lt;&lt; "\n";</div><div>&nbsp; &nbsp; &nbsp; <strong>return </strong>0;</div><div>}</div><div><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 10:24:49 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2104998122</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105808007</link>
         <description><![CDATA[<div><strong>Araba: Opel Astra&nbsp;<br>Yeni Hiz: 150</strong></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1636942818/620b75fdac826b28accc362f537f85df/opel_arstra_deneyap.png" />
         <pubDate>2022-03-21 17:13:14 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105808007</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105811825</link>
         <description><![CDATA[<div>class=araba</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 17:15:04 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105811825</guid>
      </item>
      <item>
         <title>oda 1 </title>
         <author></author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105813491</link>
         <description><![CDATA[<div>class= araba</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 17:15:56 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105813491</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105815020</link>
         <description><![CDATA[<div>1 car</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 17:16:44 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105815020</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105815625</link>
         <description><![CDATA[<div>mersedes<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 17:17:03 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105815625</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105816972</link>
         <description><![CDATA[<div>Araba 2 lamburcin</div>]]></description>
         <enclosure url="" />
         <pubDate>2022-03-21 17:17:46 UTC</pubDate>
         <guid>https://padlet.com/seymaraz1/p9xymzoi86ewsugt/wish/2105816972</guid>
      </item>
   </channel>
</rss>
