usaa24/cv1/program.c

89 lines
2.0 KiB
C
Raw Normal View History

2024-10-01 12:01:13 +00:00
#include <stdio.h>
2024-10-02 18:39:17 +00:00
#include <stdlib.h>
2024-10-02 18:26:34 +00:00
#include <ctype.h>
2024-10-02 18:39:17 +00:00
#include <string.h>
#define LINESIZE 100
#define MENU_SIZE 100
2024-10-02 12:27:38 +00:00
2024-10-02 18:39:17 +00:00
struct pizza {
char name[LINESIZE];
float price;
2024-10-02 12:33:13 +00:00
};
2024-10-02 12:27:38 +00:00
2024-10-02 18:39:17 +00:00
char hacker_script(char l) {
switch (tolower(l)) {
case 'o': return '0';
case 'i': return '1';
case 'z': return '2';
case 'e': return '3';
case 'a': return '4';
case 's': return '5';
case 'b': return '6';
case 't': return '7';
case 'q': return '9';
default: return tolower(l);
}
}
void transform_to_hacker_script(const char *src, char *dest) {
while (*src) {
*dest++ = hacker_script(*src++);
}
*dest = '\0';
}
int contains_normalized(const char *name, const char *search) {
char transformed_name[LINESIZE], transformed_search[LINESIZE];
transform_to_hacker_script(name, transformed_name);
transform_to_hacker_script(search, transformed_search);
return strstr(transformed_name, transformed_search) != NULL;
}
int read_pizza(struct pizza *item) {
char line[LINESIZE];
if (!fgets(item->name, LINESIZE, stdin)) {
return 0;
}
item->name[strcspn(item->name, "\n")] = '\0';
if (!fgets(line, LINESIZE, stdin)) {
return 0;
}
item->price = strtof(line, NULL);
return 1;
}
2024-10-01 12:01:13 +00:00
int main() {
2024-10-02 18:39:17 +00:00
struct pizza menu[MENU_SIZE];
char search[LINESIZE];
2024-10-02 12:27:38 +00:00
int count = 0;
2024-10-02 18:39:17 +00:00
printf("Zadaj hladanu surovinu:\n");
if (!fgets(search, LINESIZE, stdin)) {
printf("Error reading input.\n");
return 1;
}
search[strcspn(search, "\n")] = '\0';
2024-10-02 18:26:34 +00:00
2024-10-02 18:36:14 +00:00
printf("Zadaj jedalny listok:\n");
2024-10-02 18:39:17 +00:00
while (count < MENU_SIZE && read_pizza(&menu[count])) {
count++;
}
2024-10-02 18:31:47 +00:00
2024-10-02 18:39:17 +00:00
int found_count = 0;
for (int i = 0; i < count; i++) {
if (contains_normalized(menu[i].name, search)) {
printf("%s\n%.2f\n", menu[i].name, menu[i].price);
found_count++;
2024-10-02 17:32:07 +00:00
}
2024-10-02 16:59:35 +00:00
}
2024-10-02 12:33:13 +00:00
printf("Nacitanych %d poloziek.\n", count);
2024-10-02 12:27:38 +00:00
2024-10-01 12:01:13 +00:00
return 0;
2024-10-02 18:26:34 +00:00
}