-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoffe Time.cs
62 lines (54 loc) · 1.84 KB
/
Coffe Time.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
50
51
52
53
54
55
56
57
58
59
60
61
62
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoloLearn
{
class Program
{
static void Main(string[] args)
{
int discount = Convert.ToInt32(Console.ReadLine());
int a;
Dictionary<string, int> coffee = new Dictionary<string, int>();
coffee.Add("Americano", 50);
coffee.Add("Latte", 70);
coffee.Add("Flat White", 60);
coffee.Add("Espresso", 60);
coffee.Add("Cappuccino", 80);
coffee.Add("Mocha", 90);
foreach (string cf in coffee.Keys.ToArray())
{
a = coffee[cf] * discount;
a = a / 100;
coffee[cf] -= a;
}
foreach (KeyValuePair<string, int> cf in coffee)
Console.WriteLine("{0}: {1}", cf.Key, cf.Value);
}
}
}
/*
foreach (string cf in coffee.Keys.ToArray())
{
coffee[cf] -= (coffee[cf]*discount)/100;
Console.WriteLine(cf+": "+coffee[cf]);
}
foreach (string cf in coffee.Keys.ToArray())
{
a = coffee[cf] * discount;
a = a / 100;
coffee[cf] -= a;
Console.WriteLine("Value; {0}", coffee[cf]);
}
// because of complier limitations attempt down below unsuccesful. :(
Dictionary<string, int>.ValueCollection values = coffee.Values;
foreach (int val in values)
{
a = val * discount;
a = a / 100;
val -= a;
Console.WriteLine("Value; {0}", val);
}
*/