Açılmayan harici diski açınca, kurcalarken, 17 nisan 2013 tarihinde okulda ödev olarak verilen programın koduna hiç dokunmadan atayım dedim, Kodu okuyunca biraz da güldüm, netice diye değişken ismi vermişim sonraaa her yerde switch-case. Türkçe isimlendirmeler vsvs. Nereden geldiğimiz inkar etmiyoruz 😀 😀
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication { class Program { public static void Denklem() { double a, b, c, delta, kok1, kok2, karekok; Console.Write("A :"); a = Int32.Parse(Console.ReadLine()); Console.Write("B :"); b = Int32.Parse(Console.ReadLine()); Console.Write("C :"); c = Int32.Parse(Console.ReadLine()); delta = b * b - 4 * a * c; if (delta < 0) { Console.WriteLine("Denklemin gercel koku yoktur"); } else if (delta == 0) { kok1 = -b / 2 * a; Console.WriteLine("Denklemin Kokleri birbirine eşittir"); Console.WriteLine("x1 = x2 =" + kok1); } else if (delta > 0) { karekok = Convert.ToInt32(Math.Sqrt(delta)); kok1 = -b + karekok / 2 * a; kok2 = -b - karekok / 2 * a; Console.WriteLine("Denklemin Iki Koku Vardir"); Console.WriteLine("x1 = " + kok1); Console.WriteLine("x2 = " + kok2); } } public static void Nem_Oran() { int nem; Console.Write("NEM ORANINI GIRIN :"); nem = Int32.Parse(Console.ReadLine()); if (nem > 0 && nem < 20) { Console.WriteLine("Cok kuru"); }else if (nem > 20 && nem < 40) { Console.WriteLine("Kuru"); } else if (nem > 40 && nem < 60) { Console.WriteLine("Biraz kuru"); } else if (nem > 60 && nem < 80) { Console.WriteLine("Biraz Nemli"); } else if (nem > 80) { Console.WriteLine("Fazla Nemli"); } } public static void nem_oran_switch() { int nem; int netice = 0; Console.Write("NEM ORANINI GIRINIZ :"); nem = Int32.Parse(Console.ReadLine()); if (nem < 20 && nem > 0) { netice = 1; } else if (nem<40 && nem > 20) { netice = 2; } else if (nem<60 && nem > 40) { netice = 3; } else if (nem<80 && nem > 60) { netice = 4; } else if (nem <100 && nem> 60) { netice = 5; } else if (nem > 100) { netice = 6; } switch(netice) { case 1 : Console.WriteLine("Cok Kuru"); break; case 2 : Console.WriteLine("Kuru"); break; case 3 : Console.WriteLine("Biraz Kuru"); break; case 4 : Console.WriteLine("Biraz Nemli"); break; case 5 : Console.WriteLine("Nemli"); break; case 6 : Console.WriteLine("Cok Nemli"); break; default: Console.WriteLine("Sonuc Bulunamıyor.."); break; } } public static void sinav() { double vize1, vize2, final,sonuc; Console.Write("Lutfen 1. Vize Notunu Giriniz :"); vize1 = Int32.Parse(Console.ReadLine()); Console.Write("Lutfen 2. Vize Notunu Giriniz :"); vize2 = Int32.Parse(Console.ReadLine()); Console.Write("Lutfen Final Notunu Giriniz :"); final = Int32.Parse(Console.ReadLine()); sonuc = (vize1 * 0.2) + (vize2 * 0.2) + (final * 0.6); if (sonuc <= 100 && sonuc >= 90) { Console.WriteLine("Harf Notunuz : AA\nGecme Notunuz : " + sonuc); } else if (sonuc <= 90 && sonuc >= 85) { Console.WriteLine("Harf Notunuz : BA\nGecme Notunuz : " + sonuc); } else if (sonuc <=85 && sonuc >= 80) { Console.WriteLine("Harf Notunuz : BB\nGecme Notunuz : " + sonuc); } else if (sonuc <=80 && sonuc >= 75) { Console.WriteLine("Harf Notunuz : CB\nGecme Notunuz : " + sonuc); } else if (sonuc <= 75 && sonuc >= 70) { Console.WriteLine("Harf Notunuz : CC\nGeçme Notunuz : " + sonuc); } else if (sonuc <=70 && sonuc >= 65) { Console.WriteLine("Harf Notunuz : DC\nGecme Notunuz : " + sonuc); } else if (sonuc <=60) { Console.WriteLine("Harf Notunuz : BA\nGeçme Notunuz : " + sonuc +"\nGecemediniz.."); } } public static void not_toplam() { int sayac; int toplam; string notstr; sayac = 1; toplam = 0; Console.Write("1. ogrencinin notunu giriniz:"); notstr = Console.ReadLine(); toplam = Int32.Parse(notstr); while (++sayac < 10)//sayac=sayac+1 x++ x=x+1 y-- y=y-1 { Console.Write(sayac+". ogrencinin notunu giriniz:" ); notstr = Console.ReadLine(); toplam += Int32.Parse(notstr);// toplam=toplam+notstr } sayac--; Console.WriteLine("{0} ogrenci girdiniz", sayac); Console.WriteLine("toplam not {0}", toplam); } public static void yas() { //1.döngüye gir //2.yaşı al //3.genç yaşlı veya küçüksünüz //4. -1 girilmediyse 2 adımda devam et //5. bitir string yas; do { Console.WriteLine(" Yasinizi giriniz, cikmak icin -1 giriniz :"); yas = Console.ReadLine(); if (Int32.Parse(yas) >= 50) Console.WriteLine("Yaslisiniz"); else if (Int32.Parse(yas) >= 20) Console.WriteLine("Gencsiniz"); else if ((Int32.Parse(yas) < 20) && (Int32.Parse(yas) > 0)) Console.WriteLine("Kucuksunuz"); } while (yas != "-1"); } static void Main(string[] args) { string a; not_toplam(); a = Console.ReadLine(); } } } |