-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path011.cs
52 lines (44 loc) · 1.46 KB
/
011.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp5
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Escolha uma opção:\n[1] Ônibus\n[2] Bike\n[3] Táxi\n[4] Trem\n[5] Outros");
try
{
int op = int.Parse(Console.ReadLine());
switch (op)
{
case 1:
Console.WriteLine("Ônibus");
break;
case 2:
Console.WriteLine("Bike");
break;
case 3:
Console.WriteLine("Táxi");
break;
case 4:
Console.WriteLine("Trem");
break;
case 5:
Console.WriteLine("Outros");
break;
default:
Console.WriteLine("Nenhuma das opções");
break;
}
}
catch (Exception e)
{
Console.WriteLine("Erro: " + e.Message);
}
}
}
}