-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
122 lines (99 loc) · 3.52 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
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
using System;
namespace automobil
{
class Automobil
{
public string proizvodjac;
public string model;
public int godiste;
public string boja;
public string gorivo;
public int broj_sedista;
public double cena;
public bool sluzbeni;
public void Ispis()
{
Console.WriteLine("Proizvodjac auta je: " + proizvodjac);
Console.WriteLine("Model auta je: " + model);
Console.WriteLine("Godiste auta je: " + godiste);
Console.WriteLine("Boja auta je: " + boja);
Console.WriteLine("Gorivo je: " + gorivo);
Console.WriteLine("Broj sedista je: " + broj_sedista);
Console.WriteLine("Cena je: " + cena+ "Eura");
if (sluzbeni == true)
{
Console.WriteLine("Auto je sluzbeni.");
}
else if (sluzbeni == false)
{
Console.WriteLine("Auto nije sluzbeni.");
}
}
public void Popust(double p)
{
cena -= cena * p / 100;
}
public void Farbanje(string novaBoja)
{
boja = novaBoja;
}
}
class Program
{
static void Main()
{
Automobil auto1 = new Automobil();
auto1.proizvodjac = "Audi";
auto1.model = "A6";
auto1.godiste = 2017;
auto1.boja = "CRNA";
auto1.gorivo = "DIZEL";
auto1.broj_sedista = 5;
auto1.cena=17885.95;
auto1.sluzbeni = false;
Automobil auto2 = new Automobil();
auto2.proizvodjac = "Mercedes";
auto2.model = "GLK 3000";
auto2.godiste = 2010;
auto2.boja = "SIVA";
auto2.gorivo = "BENZIN";
auto2.broj_sedista = 5;
auto2.cena = 12000;
auto2.sluzbeni = true;
Console.WriteLine("Informacije o prvom autu sa popustom od 20% na cenu: \n");
auto1.Popust(20);
auto1.Ispis();
Console.WriteLine("Da li zelite da farbate auto? da/ne");
string a = Console.ReadLine();
string b = a.ToUpper();
if(b=="DA")
{
Console.WriteLine("U koju boju biste zeleli da ofarbate auto?");
string c = Console.ReadLine();
auto1.Farbanje(c);
Console.WriteLine("U redu, ucinicemo to za vas uz dodatnih 20E.");
}
else if(b=="NE")
{
Console.WriteLine("U redu, nastavite na transakciju.");
}
Console.WriteLine("Informacije o drugom autu sa popustom na cenu od 10%:\n");
auto2.Popust(10);
auto2.Ispis();
Console.WriteLine("Da li zelite da farbate auto? da/ne");
string x = Console.ReadLine();
string y = x.ToUpper();
if (y == "DA")
{
Console.WriteLine("U koju boju biste zeleli da ofarbate auto?");
string c = Console.ReadLine();
auto1.Farbanje(c);
Console.WriteLine("U redu, ucinicemo to za vas uz dodatnih 20E.");
}
else if (y == "NE")
{
Console.WriteLine("U redu, nastavite na transakciju.");
}
}
}
}