tatic void Main(string[] args)
{
#region örnek1 if uygulaması
// Console.BackgroundColor =ConsoleColor.DarkBlue;
// Console.ForegroundColor = ConsoleColor.Yellow;
// Console.Clear();
//int a=0,b=0;
// Console.WriteLine("lütfen a saysını girniz");
// a = int.Parse(Console.ReadLine());
// Console.WriteLine("lütfen b sayısını giriniz");
// b=Convert.ToInt16(Console.ReadLine());
// if(a<b)
// Console.WriteLine("a b den küçük");
// else
// Console.WriteLine("a b'den küçük değil");
// Console.ReadLine();
#endregion
#region örnek2 if uygulması
//int a = 5, b = 7;
//if(a>b)
//{
// Console.WriteLine("a b den büyük");
// Console.WriteLine("A={0} \t b={1}", a, b);
//}
//else
//{
// Console.WriteLine("a b den büyük değil");
// Console.WriteLine("a={0} \t b={1}",a,b);
//}
//Console.ReadLine();
#endregion
#region örnek3 if uygulması
//Console.WriteLine("cinsiyetinizi girin (e,k):");
//string s = Console.ReadLine();
//char cins = Convert.ToChar(s);
//string s1;
//if (cins == 'e' || cins == 'E')
// Console.WriteLine("erkeksiniz");
//else if (cins == 'k' || cins == 'K')
// Console.WriteLine("Kızsınız");
//else
//{
// Console.Clear();
// Console.WriteLine("lütfen cinsiyetinizi doğru giriniz!");
// Console.Write("cinsiyetiniz giriniz(e,k):");
// s1 = Console.ReadLine();
// char cins1 = Convert.ToChar(s1);
// if(cins1=='e'|| cins1=='E')
// {
// Console.WriteLine("erkeksiniz");
// }
// else if(cins1=='k'||cins1=='K')
// {
// Console.WriteLine("kızsınız");
// }
// else
// Console.WriteLine("kusura bakma bu kadar hata yapılmaz yetkili...");
//}
//Console.ReadLine();
#endregion
#region örnek4 switchcase uygulaması
// int hak = 0;
// string uygsecim = "";
// Console.WriteLine("lütfen uygulama seçimi yapınız \n 1-switch case tamsayı uygulması \n 2-switch case metin uygulması \n 3-switch case karakter uygulması");
// uygsecim = Console.ReadLine();
// if(uygsecim=="1")
// {
// #region switch case tamsayı
// basadon:
// Console.WriteLine("lütfen 1 ile 4 arasında seçimini yapınız..");
// string s = "";
// s = Console.ReadLine();
// int a = Convert.ToInt16(s);
// switch(a)
// {
// case 1:
// Console.WriteLine("secimiz 1 dir");
// break;
// case 2:
// Console.WriteLine("seciminiz 2 dir");
// break;
// case 3:
// Console.WriteLine("seciminiz 3 dür");
// break;
// case 4:
// Console.WriteLine("seciminiz 4 dür");
// break;
// default:
// Console.WriteLine("seciminiz bunlardan dışında");
// hak++;
// if (hak >= 3)
// goto gulegule;
// else
// goto basadon;
// }
// #endregion
// }
// else if(uygsecim=="2")
// {
//#region Switch case metin
// basadon:
// Console.WriteLine("lütfen 1 ile 4 arasında seçiminiz yapın...");
// string s="";
// s=Console.ReadLine();
// switch(s)
// {
// case "1":
// Console.WriteLine("seciminizi 1 dir");
// break;
// case "2":
// Console.WriteLine("seciminiz 2 dir");
// break;
// case "3":
// Console.WriteLine("seciminiz 3 dür");
// break;
// case "4":
// Console.WriteLine("seciminiz 4 dür");
// break;
// default:
// Console.WriteLine("seciminiz bunların dışında");
// hak++;
// if (hak >= 3)
// goto gulegule;
// else
// goto basadon;
// }
//#endregion
// }
// else
// {
// #region case karakter
// #endregion
// }
// gulegule:
// if(hak>=3)
// Console.WriteLine("sonlandı:{0}",hak);
// else
// Console.WriteLine("normal çalıştı");
// Console.ReadLine();
// Console.ReadLine();
#endregion
#region fordöngü
Console.BackgroundColor = ConsoleColor.DarkBlue;
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Clear();
//byte toplam = 0;
//for(byte sayac=1; sayac<=3;sayac++)
//{
// toplam += sayac;
// Console.WriteLine("sayac degeri={0} \t toplam={1} \n",sayac,toplam);
//}
//Console.WriteLine("toplam={0}",toplam);
//Console.ReadLine();
#endregion
#region for döngüsünde continue kısmı
//for (byte aa= 0; aa < 51; aa++)
//{
// if (aa % 2 == 1)
// continue;
// Console.WriteLine(aa);
//}
// Console.ReadLine();
#endregion
#region 1000sayi
// int sayac = 0;
// int x;
//int a = 0;
// for (int i = 0; i <= 1000; i++)
// {
// if(i%5==0)
// if (i % 7 != 0)
// {
// a++;
// sayac += i;
// Console.WriteLine("5 bölünen {0},kaçtane{1},toplam={2}", i, a, sayac);
// }
// }
Hiç yorum yok:
Yorum Gönder