-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path021.cs
71 lines (54 loc) · 1.39 KB
/
021.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp6
{
internal class Program
{
public class Flor
{
// Atributos
private string nome;
private string cor;
// Construtores
// Construtor Vazio
public Flor()
{
}
// Construtor com parâmetros
public Flor(string nome, string cor)
{
this.nome = nome;
this.cor = cor;
}
// Getters & Setters
public string getNome()
{
return nome;
}
public void setNome(string nome)
{
this.nome = nome;
}
public string getCor()
{
return cor;
}
public void setCor(string cor)
{
this.cor = cor;
}
}
static void Main(string[] args)
{
Flor f = new Flor();
f.setNome("Tulipa");
f.setCor("Rosa");
Console.WriteLine($"A {f.getNome()} é da cor {f.getCor()}");
Flor f2 = new Flor("Margarida", "Branca");
Console.WriteLine($"A {f2.getNome()} é da cor {f2.getCor()}");
}
}
}