-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
70 lines (60 loc) · 2.26 KB
/
Program.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
63
64
65
66
67
68
69
70
using System.Net;
class Shoppinglist
{
static void Main(string[] args)
{ // Meny
Console.WriteLine("=== SHOPPINGLISTA ===");
Console.WriteLine("1. - Visa hela listan");
Console.WriteLine("2. - Lägg till en artikel");
Console.WriteLine("3. - Ta bort en artikel");
Console.WriteLine("4. - Sök efter artikel");
Console.WriteLine("5. - Avsluta");
// Visar alla artiklar i shoppinglistan
Console.WriteLine("Se hela Shoppinglistan:");
List<string> shoppingList = new List<string>();
shoppingList.Add("Banan");
shoppingList.Add("Motorsåg");
shoppingList.Add("Trollstav");
Console.WriteLine("Visa alla artiklar");
foreach (string articel in shoppingList)
{
Console.WriteLine(articel);
}
//Lägg till en artikel genom att använda Add
Console.Write("Lägg till en artikel: ");
string newArticle = Console.ReadLine();
shoppingList.Add(newArticle);
foreach (string articel in shoppingList)
{
Console.WriteLine(articel);
}
Console.WriteLine($"Artikeln {newArticle} har lagts till.");
// Ta bort en artikel genom att använda RemoveAt
Console.Write("Ta bort artikel: ");
var removeArticle = Console.ReadLine();
int removeIndex = shoppingList.IndexOf(removeArticle);
shoppingList.RemoveAt(removeIndex);
foreach (var articel in shoppingList)
{
Console.WriteLine(articel);
}
Console.WriteLine($"Artikeln {removeArticle} har tagits bort");
// Sök efter en artikel genom att använda Contains
Console.Write("Sök efter en artikel: ");
string searcheArticle = Console.ReadLine();
shoppingList.Contains(searcheArticle);
foreach (var articel in shoppingList)
{
Console.WriteLine(articel);
}
Console.WriteLine($"Artikeln {searcheArticle} du söker har hittats.");
// Avsluta prorgam
Console.WriteLine("Vill du avsluta?");
string quitProgram = Console.ReadLine();
if (quitProgram == "5")
{
Console.WriteLine("Programmet avslutas!");
Environment.Exit(0);
}
}
}