-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
44 lines (33 loc) · 1.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
using System;
namespace Loja_de_Brinquedos28
{
class Program
{
static void Main(string[] args)
{
Brinquedo brinquedo = new Brinquedo();
Console.WriteLine("Insira o ID:");
brinquedo.Id = int.Parse(Console.ReadLine());
Console.WriteLine("Insira o nome:");
brinquedo.Nome = Console.ReadLine();
Console.WriteLine("Insira a cor:");
brinquedo.Cor = Console.ReadLine();
Console.WriteLine("Insira a quatidade:");
brinquedo.Quantidade = int.Parse(Console.ReadLine());
Console.WriteLine("Status do Usuário:\n 1-Ativo;\n 2-Inativo;");
if (Console.ReadLine() == "1")
brinquedo.Ativo = true;
else
brinquedo.Ativo = false;
Console.WriteLine("ID:" + brinquedo.Id);
Console.WriteLine("Nome:" + brinquedo.Nome);
Console.WriteLine("Cor:" + brinquedo.Cor);
Console.WriteLine("Quantidade:" + brinquedo.Quantidade);
if (brinquedo.Ativo == true)
Console.WriteLine("Status Ativo");
else
Console.WriteLine("Status Inativo");
Console.ReadLine();
}
}
}