This commit is contained in:
Deinerovych 2024-09-26 23:21:24 +02:00
parent a91a973b6c
commit afa7fe3d51

View File

@ -35,3 +35,37 @@ int contains_substring(char *food_name, char *ingredient) {
}
return 0;
}
int main() {
char ingredient[100];
char food_name[100];
char price[20];
int count = 0;
printf("Zadaj hladanu surovinu: ");
scanf("%s", ingredient);
printf("Zadaj jedalny listok:\n");
while (fgets(food_name, sizeof(food_name), stdin)) {
if (food_name[strlen(food_name) - 1] == '\n') {
food_name[strlen(food_name) - 1] = '\0';
}
if (!fgets(price, sizeof(price), stdin)) {
break;
}
if (price[strlen(price) - 1] == '\n') {
price[strlen(price) - 1] = '\0';
}
if (contains_substring(food_name, ingredient)) {
printf("%s\n%s\n", food_name, price);
}
count++;
}
printf("Nacitanych %d poloziek.\n", count);
return 0;
}