-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
48 lines (35 loc) · 1.04 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
using System;
namespace Switch_Case
{
class Program
{
static void Main(string[] args)
{
string dia = " ";
Console.WriteLine("Dias da semana");
int x = int.Parse(Console.ReadLine());
switch (x) {
case 1:
dia = "Domingo";
break;
case 2:
dia = "Segunda";
break;
case 3:
dia = "Terça" ;
break;
default:
dia = " Valor inválido";
break;
}
System.Console.WriteLine("Dia da semana " + dia);
System.Console.WriteLine("TESTE 1");
System.Console.WriteLine("Teste 2");
Carros fusca = new Carros();
fusca.Nome = Console.ReadLine();
System.Console.WriteLine(fusca.Nome);
System.Console.WriteLine(fusca.Nome);
System.Console.WriteLine("ola");
}
}
}