1 Kasım 2013 Cuma

C# da Otopark Ücret Hesaplama Programı

C# Otopark ücretini hesaplayan program 5 saatin  ve aşağısı 4 tl 5 saat ve 10 saat arası 3 tl 10  saat ve yukarısı 2 tl olarak hesaplanacak

private void button1_Click(object sender, EventArgs e)
        {
            int sayi, ucret;
            sayi = Convert.ToInt32(textBox1.Text);
            if (sayi>10)
            {
                ucret = 31 + (sayi - 10) * 2;
            }

            else if (sayi>=5 && sayi<10)
            {
                ucret = 16 + (sayi - 5) * 3;
            }
            else
            {
                ucret = sayi * 4;
            }
            label3.Text = ucret.ToString();

        }

                
     
                                        EKRAN GÖRÜNTÜSÜ

c#
c#

0 yorum :

Yorum Gönder