From 2ed049575ff4f397fbd8eb133e9fb411bc961591 Mon Sep 17 00:00:00 2001 From: Yevhen Kozirovskyi Date: Sat, 5 Oct 2024 11:48:13 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20cv2/program.c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv2/program.c | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/cv2/program.c b/cv2/program.c index 861ecb4..2ef623b 100644 --- a/cv2/program.c +++ b/cv2/program.c @@ -6,7 +6,7 @@ #define MAX_DISHES 100 char dish_name[MAX_DISHES][MAX_LENGTH]; -char dish_price[MAX_DISHES][MAX_LENGTH]; +double dish_price[MAX_DISHES]; int main() { int count = 0; @@ -14,10 +14,8 @@ int main() { while (count < MAX_DISHES) { char dish[MAX_LENGTH]; - char price[MAX_LENGTH]; fgets(dish, MAX_LENGTH, stdin); - dish[strcspn(dish, "\n")] = 0; if (strlen(dish) == 0) { @@ -31,8 +29,8 @@ int main() { strcpy(dish_name[count], dish); + char price[MAX_LENGTH]; fgets(price, MAX_LENGTH, stdin); - price[strcspn(price, "\n")] = 0; if (strlen(price) == 0) { @@ -45,34 +43,32 @@ int main() { break; } - strcpy(dish_price[count], price); - + // Преобразуем цену в число с плавающей запятой + dish_price[count] = atof(price); count++; } - + // Сортируем блюда по цене for (int i = 0; i < count - 1; i++) { for (int j = 0; j < count - i - 1; j++) { - double price1 = atof(dish_price[j]); - double price2 = atof(dish_price[j + 1]); + if (dish_price[j] > dish_price[j + 1]) { + // Меняем местами цены + double temp_price = dish_price[j]; + dish_price[j] = dish_price[j + 1]; + dish_price[j + 1] = temp_price; - if (price1 > price2) { + // Меняем местами названия char temp_name[MAX_LENGTH]; strcpy(temp_name, dish_name[j]); strcpy(dish_name[j], dish_name[j + 1]); strcpy(dish_name[j + 1], temp_name); - - char temp_price[MAX_LENGTH]; - strcpy(temp_price, dish_price[j]); - strcpy(dish_price[j], dish_price[j + 1]); - strcpy(dish_price[j + 1], temp_price); } } } + // Выводим отсортированные блюда и их цены for (int i = 0; i < count; i++) { - double price = atof(dish_price[i]); - printf("%s\n%0.6f\n", dish_name[i], price); + printf("%s\n%.6f\n", dish_name[i], dish_price[i]); } return 0;