-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-24.cs
49 lines (46 loc) · 1.85 KB
/
example-24.cs
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
class Program
{
static void Main(string[] args)
{
int urunno;
double sm,fiyat=0,toplam=0;
Console.Write("Bir Ürün Numarası Giriniz :(Çıkış İçin -1'e Basınız): ");
urunno = Convert.ToInt16(Console.ReadLine());
while (urunno != -1)
{
Console.Write("Satış Miktarı Giriniz : ");
sm = Convert.ToInt16(Console.ReadLine());
switch (urunno)
{
case 1:
fiyat = 2.50 * sm;
Console.Write("Bu ürünün Fiyatı {0} : ",fiyat);
break;
case 2:
fiyat = 3.16 * sm;
Console.Write("Bu ürünün Fiyatı {0} : ", fiyat);
break;
case 3:
fiyat = 4.60 * sm;
Console.Write("Bu ürünün Fiyatı {0} : ", fiyat);
break;
case 4:
fiyat = 5.12 * sm;
Console.Write("Bu ürünün Fiyatı {0} : ", fiyat);
break;
case 5:
fiyat = 6.20 * sm;
Console.Write("Bu ürünün Fiyatı {0} : ", fiyat);
break;
default:
Console.WriteLine("Lütfen Geçerli Ürün Giriniz");
break;
}
toplam += fiyat;
Console.Write("\nBir Ürün Numarası Giriniz :(Çıkış İçin -1'e Basınız): ");
urunno = Convert.ToInt16(Console.ReadLine());
}
Console.Write("Toplam Fiyat : " + toplam);
Console.ReadKey();
}
}