19.03.2017, 12:07. Показов 2794. Ответов 1
| C# |
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
| using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
/*Предметная область: Интернет магазин.В информационной системе хранятся данные о товарах. Клиент звонит в магазин и оставляет заказ на товар.
На все товары имеется скидка.На одни товары скидка задана в процентах, на другие предоставлена фиксированная скидка.
Система должна позволять выполнять следующие задачи:
• ввод информации о товарах;
• регистрация заказа клиента на покупку определенного товара;
• после ввода фамилии покупателя вывод списка заказанных им товаров;
• вычислять среднюю стоимость товара.
Добавить обработку исключительных ситуаций:
• наименование товара менее трех символов.
• стоимость с учетом скидки более 1 млн.руб.
Добавить перегруженный бинарный оператор для увеличения стоимости товара. */
namespace ConsoleInternetShop
{
class Product
{
public string Title; //название продука
public double Price; //стоимость товара
public Product(string Title, double Price)
{
this.Title = Title;
this.Price = Price;
}
public static Product operator +(Product x, double plus)
{
x.Price = x.Price + plus;
return x;
}
public void AddProduct()
{
File.AppendAllText("Product.txt", Title + " " + Price + Environment.NewLine);
Console.WriteLine("Продукт успешно добавлено!");
}
}
class Client
{
public string Name;
public string SecondName;
public int[] NumberProduct;
public Client(string Name, string SecondName, int[] NumberProduct)
{
this.Name = Name;
this.SecondName = SecondName;
this.NumberProduct = NumberProduct;
}
public void AddClient()
{
string[] arr = File.ReadLines("Product.txt").ToArray();
string product = "";
int sum = 0;
for (int i = 0; i < NumberProduct.Length; i++)
{
product += " " + arr[NumberProduct[i] - 1].Split(' ')[0] + ";";
sum += Convert.ToInt32(arr[NumberProduct[i] - 1].Split(' ')[1]);
}
File.AppendAllText("Client.txt", Name + " " + SecondName + " - " + sum + " : " + product + Environment.NewLine);
Console.WriteLine("Клиент успешно добавлен!");
}
public void Stoimost()
{
Console.WriteLine("Покупатель приобрел - " + NumberProduct.Length + " товар:");
string[] arr = File.ReadLines("Product.txt").ToArray();
int sum = 0;
for (int i = 0; i < NumberProduct.Length; i++)
{
Console.WriteLine((i + 1) + "." + arr[NumberProduct[i] - 1].Split(' ')[0]);
sum += Convert.ToInt32(arr[NumberProduct[i] - 1].Split(' ')[1]);
}
Console.WriteLine("Общая сумма: " + sum);
}
}
class Program
{
static void View()
{
string[] arr = File.ReadLines("Product.txt").ToArray();
Console.WriteLine("Список продуктов:");
int number = 1;
foreach (string s in arr)
{
Console.WriteLine(number + "." + s);
number++;
}
}
static void ViewClient()
{
string[] arr = File.ReadLines("Client.txt").ToArray();
Console.WriteLine("Список клиентов:");
int number = 1;
foreach (string s in arr)
{
Console.WriteLine(number + "." + s);
number++;
}
}
static void Main(string[] args)
{
while (true)
{
Console.Write("\nВыберите действие:\n1-Ввод продукта\n2-Вывод существующих товаров\n3-Покупка товара клиентом\n4-Поиск клиента\n5-Увеличение стоимости товара\n0-Выход\nВвод: ");
try
{
int n = int.Parse(Console.ReadLine());
Console.Clear();
switch (n)
{
case 1:
{
string Title;
while (true)
{
Console.Write("Введиет название продукта: ");
Title = Console.ReadLine();
if (Title.Length < 3)//длина поля наименования продукта меньше 3 символов.
Console.WriteLine("Поле наименования продукта не может быть меньше 3 символов!");
else
break;
}
Console.Write("Введите цену продукта: ");
double Price = double.Parse(Console.ReadLine());
Product a = new Product(Title, Price);
a.AddProduct();
}
break;
case 2:
{
View();
}
break;
case 3:
{
string Name, SecondName, NumberProduct;
List<int> price;
Console.WriteLine("Введите данные о покупателе");
while (true)
{
Console.Write("Введите имя: ");
Name = Console.ReadLine();
if (string.IsNullOrWhiteSpace(Name))
Console.WriteLine("Имя покупателя не может быть пустым!");
else
break;
}
while (true)
{
Console.Write("Введите фамилию: ");
SecondName = Console.ReadLine();
if (string.IsNullOrWhiteSpace(SecondName))
Console.WriteLine("Фамилия покупателя не может быть пустой!");
else
break;
}
while (true)
{
Console.WriteLine("Выберите товар: ");
View();
Console.Write("Введите номер (через пробел): ");
NumberProduct = Console.ReadLine();
try
{
string[] arr = NumberProduct.Split(' ');
price = new List<int>();
for (int i = 0; i < arr.Length; i++)
{
price.Add(Int32.Parse(arr[i]));
}
break;
}
catch
{
Console.WriteLine("Неверный формат данных!\n");
}
}
Client cl = new Client(Name, SecondName, price.ToArray());
cl.AddClient();
cl.Stoimost();
}
break;
case 4:
{
string SecondName;
while (true)
{
Console.Write("Введите фамилию: ");
SecondName = Console.ReadLine();
if (string.IsNullOrWhiteSpace(SecondName))
Console.WriteLine("Фамилия покупателя не может быть пустой!");
else
break;
}
List<string> array = File.ReadAllLines("Client.txt").ToList();
foreach (var a in array)
{
if (a.Split('-')[0].Split(' ')[1].Equals(SecondName))
{
Console.WriteLine(a);
}
}
}
break;
case 5:
{
string[] arr = File.ReadLines("Product.txt").ToArray();
Console.WriteLine("Введите сумму на которую необходимо увеличить все введенные товары");
double plus = double.Parse(Console.ReadLine());
string Title = null;
double Price = 0;
File.Delete(@"Product.txt");
foreach (string s in arr)
{
string[] mas = s.Split(' ');
Title = string.Copy(mas[0]);
Price = double.Parse(mas[1]);
Product b = new Product(Title, Price) + plus;
b.AddProduct();
}
break;
}
case 0: return;
default: Console.WriteLine("Нет такой команды!"); break;
}
}
catch (FileNotFoundException)
{ Console.WriteLine("Файл невозможно открыть по причине его отсутствия"); }
catch (IOException)
{ Console.WriteLine("Файл невозможно открыть из-за ошибки ввода-вывода"); }
catch (ArgumentNullException)
{ Console.WriteLine("Имя файла представляет собой null-значение"); }
catch (FormatException)
{ Console.WriteLine("Неверный формат ввода данных"); }
}
}
}
} |
|
Помогите добавить данный пункт
На все товары имеется скидка.На одни товары скидка задана в процентах, на другие предоставлена фиксированная скидка.
Интересует больше как это добавить в эту часть кода:
| C# |
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
| case 3:
{
string Name, SecondName, NumberProduct;
List<int> price;
Console.WriteLine("Введите данные о покупателе");
while (true)
{
Console.Write("Введите имя: ");
Name = Console.ReadLine();
if (string.IsNullOrWhiteSpace(Name))
Console.WriteLine("Имя покупателя не может быть пустым!");
else
break;
}
while (true)
{
Console.Write("Введите фамилию: ");
SecondName = Console.ReadLine();
if (string.IsNullOrWhiteSpace(SecondName))
Console.WriteLine("Фамилия покупателя не может быть пустой!");
else
break;
}
while (true)
{
Console.WriteLine("Выберите товар: ");
View();
Console.Write("Введите номер (через пробел): ");
NumberProduct = Console.ReadLine();
try
{
string[] arr = NumberProduct.Split(' ');
price = new List<int>();
for (int i = 0; i < arr.Length; i++)
{
price.Add(Int32.Parse(arr[i]));
}
break;
}
catch
{
Console.WriteLine("Неверный формат данных!\n");
}
}
Client cl = new Client(Name, SecondName, price.ToArray());
cl.AddClient();
cl.Stoimost();
} |
|