<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Deneyap Ekibim Gelin ♥ by Zeynep Yavuz</title>
      <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1</link>
      <description>Buraya deneyap yazılım kodları ekliyom ♥</description>
      <language>en-us</language>
      <pubDate>2023-05-18 16:10:15 UTC</pubDate>
      <lastBuildDate>2026-03-17 02:27:18 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title></title>
         <author>zeynepyavz98</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596479466</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>using namespace std;<br><br>class Car {&nbsp; &nbsp; &nbsp; &nbsp; // The class<br>&nbsp; public:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Access specifier<br>&nbsp; &nbsp; string brand;&nbsp; // Attribute<br>&nbsp; &nbsp; string model;&nbsp; // Attribute<br>&nbsp; &nbsp; int year;&nbsp; &nbsp; &nbsp; // Attribute<br>&nbsp; &nbsp; Car(string x, string y, int z) {&nbsp; // Constructor with parameters<br>&nbsp; &nbsp; &nbsp; brand = x;<br>&nbsp; &nbsp; &nbsp; model = y;<br>&nbsp; &nbsp; &nbsp; year = z;<br>&nbsp; &nbsp; }<br>};<br><br>int main() {<br>&nbsp; // Create Car objects and call the constructor with different values<br>&nbsp; Car carObj1("BMW", "X5", 1999);<br>&nbsp; Car carObj2("Ford", "Mustang", 1969);<br>&nbsp; Car tofas("Tofask", "Tofas", 1998);<br><br>&nbsp; // Print values<br>&nbsp; cout &lt;&lt; carObj1.brand &lt;&lt; " " &lt;&lt; carObj1.model &lt;&lt; " " &lt;&lt; carObj1.year &lt;&lt; "\n";<br>&nbsp; cout &lt;&lt; carObj2.brand &lt;&lt; " " &lt;&lt; carObj2.model &lt;&lt; " " &lt;&lt; carObj2.year &lt;&lt; "\n";<br>&nbsp; cout &lt;&lt; tofas.brand &lt;&lt; " " &lt;&lt; tofas.model&lt;&lt; " "&lt;&lt; tofas.year &lt;&lt; "\n";<br>&nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 16:11:04 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596479466</guid>
      </item>
      <item>
         <title>dışarıda yapıcı fonksiyon</title>
         <author>zeynepyavz98</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596486123</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>using namespace std;<br><br>class Car {&nbsp; &nbsp; &nbsp; &nbsp; // The class<br>&nbsp; public:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Access specifier<br>&nbsp; &nbsp; string brand;&nbsp; // Attribute<br>&nbsp; &nbsp; string model;&nbsp; // Attribute<br>&nbsp; &nbsp; int year;&nbsp; &nbsp; &nbsp; // Attribute<br>&nbsp; &nbsp; int fiyat;<br>&nbsp; &nbsp; Car(string x, string y, int z, int a); // Constructor declaration<br>};<br><br>// Constructor definition outside the class<br>Car::Car(string x, string y, int z, int a) {<br>&nbsp; brand = x;<br>&nbsp; model = y;<br>&nbsp; year = z;<br>&nbsp; fiyat = a;<br>}<br><br>int main() {<br>&nbsp; // Create Car objects and call the constructor with different values<br>&nbsp; Car carObj1("BMW", "X5", 1999, 500000);<br>&nbsp; Car carObj2("Ford", "Mustang", 1969, 599999);<br>&nbsp; Car carObj3("Togg", "SUV", 2023, 10000000);<br><br>&nbsp; // Print values<br>&nbsp; cout &lt;&lt; carObj1.brand &lt;&lt; " " &lt;&lt; carObj1.model &lt;&lt; " " &lt;&lt; carObj1.year &lt;&lt; "\n";<br>&nbsp; cout &lt;&lt; carObj2.brand &lt;&lt; " " &lt;&lt; carObj2.model &lt;&lt; " " &lt;&lt; carObj2.year &lt;&lt; "\n";<br>&nbsp; cout &lt;&lt; carObj3.brand &lt;&lt; " " &lt;&lt; carObj3.model &lt;&lt; " " &lt;&lt; carObj3.year &lt;&lt; "\n";<br>&nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 16:16:54 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596486123</guid>
      </item>
      <item>
         <title>Deneyap 1</title>
         <author>zeynepyavz98</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596490908</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>#include &lt;cstring&gt;<br>using namespace std;<br>// Bazi niteliklere sahip bir Araba sinifi olusturun<br>class Araba {<br>public:<br>&nbsp; &nbsp; char marka[30];<br>&nbsp; &nbsp; char model[30];<br>&nbsp; &nbsp; int yil;<br>&nbsp; &nbsp; int fiyat;<br>};<br>int main() {<br>&nbsp; &nbsp; // Ilk Araba nesnesini olusturun<br>&nbsp; &nbsp; Araba araba1;<br>&nbsp; &nbsp; strcpy(araba1.marka, "Suzuki");<br>&nbsp; &nbsp; strcpy(araba1.model, "Vitara");<br>&nbsp; &nbsp; araba1.yil = 2016;<br>&nbsp; &nbsp; araba1.fiyat = 225000;<br>&nbsp; &nbsp; // Ikinci Araba nesnesini olusturun<br>&nbsp; &nbsp; Araba araba2;<br>&nbsp; &nbsp; strcpy(araba2.marka, "Volkswagen");<br>&nbsp; &nbsp; strcpy(araba2.model, "T-Roc");<br>&nbsp; &nbsp; araba2.yil = 2020;<br>&nbsp; &nbsp; araba2.fiyat = 360000;<br>&nbsp; &nbsp; // Nesnelerin ozelliklerini yazdirin<br>&nbsp; &nbsp; cout &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";<br>&nbsp; &nbsp; cout &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";<br>&nbsp; &nbsp; return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 16:21:15 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596490908</guid>
      </item>
      <item>
         <title>kodlar 2</title>
         <author>zeynepyavz98</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596591810</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>#include &lt;cstring&gt;<br>#include &lt;string&gt;<br>using namespace std;<br>// Bazi niteliklere sahip bir Araba sinifi olusturun<br>class Araba {<br>public:<br>&nbsp; &nbsp; string marka[30];<br>&nbsp; &nbsp; string model[30];<br>&nbsp; &nbsp; int yil;<br>&nbsp; &nbsp; int fiyat;<br>&nbsp; &nbsp; Araba(string a, string s, int d, int f){<br><br>&nbsp; &nbsp; &nbsp; &nbsp; yil= d;<br>&nbsp; &nbsp; &nbsp; &nbsp; fiyat= f;<br>&nbsp; &nbsp; }<br>};<br>int main() {<br>&nbsp; &nbsp; Araba araba1("Togg", "SUV", 2023, 233333);<br>&nbsp; &nbsp; Araba araba2("Tesla", "X", 2020, 3000000);<br>&nbsp; &nbsp; cout &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";<br>&nbsp; &nbsp; cout &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";<br>&nbsp; &nbsp; return 0;<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 17:49:01 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596591810</guid>
      </item>
      <item>
         <title>Ogrenci no ad soyad</title>
         <author>zeynepyavz98</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596615007</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>#include &lt;cstring&gt;<br>#include &lt;string&gt;<br><br>using namespace std;<br>class Ogrenci {<br>&nbsp; &nbsp; public:<br>&nbsp; &nbsp; &nbsp; &nbsp; int ogr_no;<br>&nbsp; &nbsp; &nbsp; &nbsp; string ogr_ad;<br>&nbsp; &nbsp; &nbsp; &nbsp; string ogr_soyad;<br>&nbsp; &nbsp; &nbsp; &nbsp; Ogrenci(int no, string ad, string soyad){<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ogr_no=no;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ogr_ad=ad;<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ogr_soyad=soyad;<br>&nbsp; &nbsp; &nbsp; &nbsp; }<br><br>&nbsp; &nbsp; &nbsp; &nbsp; void goster(){<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout&lt;&lt;"Ogrenci Bilgi: " &lt;&lt; ogr_no &lt;&lt;" "&lt;&lt; ogr_ad &lt;&lt; " " &lt;&lt; ogr_soyad &lt;&lt; endl;<br>&nbsp; &nbsp; }<br><br><br>};<br>int main(void) {<br>&nbsp; &nbsp; Ogrenci ogr1(536, "Zeynep", "Yavuz");<br>&nbsp; &nbsp; Ogrenci ogr2(5025,"Elifnur", "Cebeci");<br>&nbsp; &nbsp; Ogrenci ogr3(552,"Miray", "Alaca");<br>&nbsp; &nbsp; Ogrenci ogr4(655,"Oytun", "Unlu");<br>&nbsp; &nbsp; ogr1.goster();<br>&nbsp; &nbsp; ogr2.goster();<br>&nbsp; &nbsp; ogr3.goster();<br>&nbsp; &nbsp; ogr4.goster();<br><br>&nbsp; &nbsp; return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 18:10:55 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596615007</guid>
      </item>
      <item>
         <title>Zeynep Hocam Sizi Seviyoruz...</title>
         <author>mirayalaca2011</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596630828</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 18:26:00 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596630828</guid>
      </item>
      <item>
         <title></title>
         <author>mirayalaca2011</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596633532</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2046513237/0ebdd251ac1a87a84434e27ea5f31c26/Deneya_yuvarlak_logo.jpg" />
         <pubDate>2023-05-18 18:28:47 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596633532</guid>
      </item>
      <item>
         <title></title>
         <author>zeynepyavz98</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596638698</link>
         <description><![CDATA[<div>#include &lt;iostream&gt;<br>using namespace std;<br><br>class Oda {<br>private:<br>&nbsp; &nbsp; double uzunluk;<br>&nbsp; &nbsp; double genislik;<br>&nbsp; &nbsp; double yukseklik;<br><br>public:<br>&nbsp; &nbsp; void veriAl(double uzn, double gns, double yks) {<br>&nbsp; &nbsp; &nbsp; &nbsp; uzunluk = uzn;<br>&nbsp; &nbsp; &nbsp; &nbsp; genislik = gns;<br>&nbsp; &nbsp; &nbsp; &nbsp; yukseklik = yks;<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; double alanHesapla() {<br>&nbsp; &nbsp; &nbsp; &nbsp; return uzunluk * genislik;<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; double hacimHesapla() {<br>&nbsp; &nbsp; &nbsp; &nbsp; return uzunluk * genislik * yukseklik;<br>&nbsp; &nbsp; }<br>};<br><br>int main() {<br>&nbsp; &nbsp; double uzunAl;<br>&nbsp; &nbsp; double genislikAl;<br>&nbsp; &nbsp; double yuksekAl;<br>&nbsp; &nbsp; cout &lt;&lt; " \n Double verisi olan bir uzunluk Giriniz: ";<br>&nbsp; &nbsp; cin &gt;&gt; uzunAl;<br>&nbsp; &nbsp; cout &lt;&lt; " \n Double verisi olan bir genislik Giriniz: ";<br>&nbsp; &nbsp; cin &gt;&gt; genislikAl;<br>&nbsp; &nbsp; cout &lt;&lt; " \n Double verisi olan bir genislik Giriniz: ";<br>&nbsp; &nbsp; cin &gt;&gt; yuksekAl;<br>&nbsp; &nbsp; Oda suitOda;<br>&nbsp; &nbsp; suitOda.veriAl(uzunAl, genislikAl, 3.2);<br>&nbsp; &nbsp; cout &lt;&lt; "\n Suit Oda Alan: " &lt;&lt; suitOda.alanHesapla() &lt;&lt; endl;<br>&nbsp; &nbsp; cout &lt;&lt; "Suit Oda Hacim: " &lt;&lt; suitOda.hacimHesapla() &lt;&lt; endl;<br>&nbsp; &nbsp; return 0;<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2023-05-18 18:34:23 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596638698</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596638850</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/2046473816/fb9d90a6e6737e6d2b9b2a95a3227325/indir__2_.png" />
         <pubDate>2023-05-18 18:34:35 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596638850</guid>
      </item>
      <item>
         <title>part2</title>
         <author>elifnurcebeciba10</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596639074</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1987418027/1d597561239707d987d3e97499da0e5e/Ekran_G_r_nt_s___12_.png" />
         <pubDate>2023-05-18 18:34:52 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596639074</guid>
      </item>
      <item>
         <title>part1</title>
         <author>elifnurcebeciba10</author>
         <link>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596640080</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1987418027/ca6ed9fe5f6dd6ba7ac2f4e3ee8914ce/Ekran_G_r_nt_s___13_.png" />
         <pubDate>2023-05-18 18:35:54 UTC</pubDate>
         <guid>https://padlet.com/zeynepyavz98/18fijzdkfumxovj1/wish/2596640080</guid>
      </item>
   </channel>
</rss>
