-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path016.cs
142 lines (119 loc) · 4.71 KB
/
016.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
// Desenvolva um programa para criar uma lista de compras
ArrayList listaDeCompras = new ArrayList();
string item = "teste";
int op = 0;
int cont = 1;
while (true)
{
Console.WriteLine("\n--- LISTA DE COMPRAS ---");
Console.WriteLine("[1] Adicionar item");
Console.WriteLine("[2] Listar item");
Console.WriteLine("[3] Alterar item");
Console.WriteLine("[4] Deletar item");
Console.WriteLine("[5] Limpar lista");
Console.WriteLine("[0] Sair do Programa");
Console.Write("Digite uma opção: ");
try
{
op = int.Parse(Console.ReadLine());
} catch (Exception e) {
Console.WriteLine("Erro: " + e.Message);
}
switch (op)
{
case 1:
Console.WriteLine("\n---* Adicionar Items *---");
Console.WriteLine("Digite o item ou deixe em branco para finalizar.\n");
while (item != "")
{
Console.Write($"Digite o {cont}º item da lista: ");
item = Console.ReadLine();
if (item == "")
{
break;
}
listaDeCompras.Add(item);
cont++;
}
break;
case 2:
Console.WriteLine("\n---* Listar Items *---");
if(listaDeCompras.Count == 0)
{
Console.WriteLine("Não há itens na lista.");
}
else
{
int num = 1;
foreach (string i in listaDeCompras)
{
Console.WriteLine($"{num}. {i}");
num++;
};
}
break;
case 3:
break;
case 4:
Console.WriteLine("\n---* Deletar Itens *---");
if (listaDeCompras.Count == 0)
{
Console.WriteLine("Não há itens na lista.");
}
else
{
int num = 1;
foreach (string i in listaDeCompras)
{
Console.WriteLine($"{num}. {i}");
num++;
};
}
Console.WriteLine("Digite o número do item que deseja deletar: ");
// int opDeletar = int.Parse(Console.ReadLine());
string opcao = Console.ReadLine();
foreach (string i in listaDeCompras)
{
if (listaDeCompras.Contains(opcao))
{
Console.WriteLine(i);
Console.WriteLine(listaDeCompras.IndexOf(i));
int indice = listaDeCompras.IndexOf(i);
Console.WriteLine(indice);
listaDeCompras.Remove(opcao);
}
};
break;
case 5:
if (listaDeCompras.Count == 0)
{
Console.WriteLine("Não há itens na lista.");
}
else
{
listaDeCompras.Clear();
Console.WriteLine("Limpando lista!");
}
break;
case 0:
break;
default:
Console.WriteLine("Opção inválida");
break;
}
}
}
}
}