usaa24/cv2/program.c

71 lines
2.4 KiB
C
Raw Normal View History

2024-10-05 11:44:53 +00:00
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define MAX_LENGTH 100
#define MAX_DISHES 100
char dish_name[MAX_DISHES][MAX_LENGTH];
2024-10-05 11:48:13 +00:00
double dish_price[MAX_DISHES];
2024-10-05 11:44:53 +00:00
int main() {
int count = 0;
while (count < MAX_DISHES) {
char dish[MAX_LENGTH];
2024-10-05 11:51:59 +00:00
char price[MAX_LENGTH];
2024-10-05 11:44:53 +00:00
2024-10-05 11:51:59 +00:00
// Читаем название блюда
if (fgets(dish, MAX_LENGTH, stdin) == NULL) {
break; // Если чтение не удалось, выходим из цикла
}
dish[strcspn(dish, "\n")] = 0; // Убираем символ новой строки
2024-10-05 11:44:53 +00:00
2024-10-05 11:51:59 +00:00
// Проверяем на пустую строку
2024-10-05 11:44:53 +00:00
if (strlen(dish) == 0) {
2024-10-05 11:51:59 +00:00
break; // Выход из цикла при пустой строке
2024-10-05 11:44:53 +00:00
}
2024-10-05 11:51:59 +00:00
strcpy(dish_name[count], dish); // Сохраняем название блюда
2024-10-05 11:44:53 +00:00
2024-10-05 11:51:59 +00:00
// Читаем цену блюда
if (fgets(price, MAX_LENGTH, stdin) == NULL) {
break; // Если чтение не удалось, выходим из цикла
2024-10-05 11:44:53 +00:00
}
2024-10-05 11:51:59 +00:00
price[strcspn(price, "\n")] = 0; // Убираем символ новой строки
2024-10-05 11:44:53 +00:00
2024-10-05 11:51:59 +00:00
// Проверяем на пустую строку
if (strlen(price) == 0) {
break; // Выход из цикла при пустой строке
2024-10-05 11:44:53 +00:00
}
2024-10-05 11:48:13 +00:00
// Преобразуем цену в число с плавающей запятой
dish_price[count] = atof(price);
2024-10-05 11:44:53 +00:00
count++;
}
2024-10-05 11:48:13 +00:00
// Сортируем блюда по цене
2024-10-05 11:44:53 +00:00
for (int i = 0; i < count - 1; i++) {
for (int j = 0; j < count - i - 1; j++) {
2024-10-05 11:48:13 +00:00
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;
2024-10-05 11:44:53 +00:00
2024-10-05 11:48:13 +00:00
// Меняем местами названия
2024-10-05 11:44:53 +00:00
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);
}
}
}
2024-10-05 11:48:13 +00:00
// Выводим отсортированные блюда и их цены
2024-10-05 11:44:53 +00:00
for (int i = 0; i < count; i++) {
2024-10-05 11:48:13 +00:00
printf("%s\n%.6f\n", dish_name[i], dish_price[i]);
2024-10-05 11:44:53 +00:00
}
return 0;
}