static void Main(string[] args)
{
#region ornek7 ikilik sisteme sayı dönüştürülmesi
//string mod = "";
//Console.WriteLine("lütfen ikilk dönüştürülmesi istediğiniz sayısınızı giriniz:");
//string mod1 = Console.ReadLine();
//int b = Convert.ToInt16(mod1);
//for (; b > 0; b /= 2)
// mod = b % 2 + mod;
//Console.WriteLine(mod);
//Console.ReadLine();
#endregion
#region uslusayi
//int a, b,d=1;
//Console.WriteLine("sayi");
//a = Convert.ToInt32(Console.ReadLine());
//Console.WriteLine("us");
//b = Convert.ToInt32(Console.ReadLine());
//for (int i = 0; i < b; i++)
//{
// d = a * a;
//}
//Console.WriteLine(""+d);
//Console.ReadLine();
#endregion,
#region hesap
//int a, b, c = 1, d;
//Console.WriteLine("1.sayi gir");
//a = Convert.ToInt32(Console.ReadLine());
//Console.WriteLine("2.sayi gir");
//b = Convert.ToInt32(Console.ReadLine());
//Console.WriteLine("yapmak istediğiniz işlem için sayi seçenekleri giriniz 1(+) 2(-) 3(*) 4(/)");
//c = Convert.ToInt32(Console.ReadLine());
//switch (c)
//{
// case 1:
// d = a + b;
// Console.WriteLine(d);
// break;
// case 2:
// d = a - b;
// Console.WriteLine(d);
// break;
// case 3:
// d = a * b;
// Console.WriteLine(d);
// break;
// case 4:
// d = a / b;
// Console.WriteLine(d);
// break;
// default:
// Console.WriteLine("doğru ifade yaz!!");
// break;
//}Console.ReadLine();
#endregion
#region ornek8
//int x = int.Parse(Console.ReadLine());
//int basamak1 = (x / 1000) % 10;
//int basamak2 = (x / 100) % 10;
//int basamak3 = (x / 10) % 10;
//int basamak4 = (x % 10);
//Console.WriteLine("Basamakları Toplamı: {0}", basamak1 + basamak2 + basamak3 + basamak4);
//Console.WriteLine(" {0}{1}{2}{3}", basamak1, basamak2, basamak3, basamak4);
//Console.ReadKey();
//#endregion
//#region while1
//int i = 1;
//while(i<10)
//{
// Console.WriteLine("i değişkenin {0}",i);
// i++;
//}
//Console.ReadLine();
#endregion
#region while2
//int x = 1;
//while(x++<10)
//{
// Console.WriteLine("i değişkenin değerleri {0}",x);
//}
//Console.ReadLine();
#endregion
#region while3
//int x = 1;
//while(x++<10)
//{
// Console.WriteLine("i değişkenin değerleri={0}",x);
//}
//Console.ReadLine();
#endregion
#region while4
//int z = 2;
//while(++z<6)
//{
// Console.WriteLine("i değişkenin değerleri {0}",z);
//}
//Console.ReadLine();
#endregion
#region dowhile
//int i = 6, n = 5, sonuc;
//do
//{
// //koşula gerek kalmadan bi kereye mahsus çalışır
// sonuc = n * i;
// Console.WriteLine("{0}*{1}={2}", n, i, sonuc);
// i++;
//}
//while (i <= 10);
//Console.ReadLine();
#endregion
//ödev sayı tahmin oyunu yapınn(while ile)
}
Hiç yorum yok:
Yorum Gönder