diff --git a/cv1/program.c b/cv1/program.c index 4e70273..fd0f704 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -1,7 +1,76 @@ -#include "stdio.h" +#include +#include +#include -int main(){ +// Функція для перевірки еквівалентності символів за правилами Hack3r scr1pt +int isHack3rEquivalent(char c1, char c2) { + char table[256] = {0}; + table['0'] = 'o'; table['o'] = '0'; + table['1'] = 'i'; table['i'] = '1'; + table['2'] = 'z'; table['z'] = '2'; + table['3'] = 'e'; table['e'] = '3'; + table['4'] = 'a'; table['a'] = '4'; + table['5'] = 's'; table['s'] = '5'; + table['6'] = 'b'; table['b'] = '6'; + table['7'] = 't'; table['t'] = '7'; + table['8'] = 'b'; table['b'] = '8'; + table['9'] = 'q'; table['q'] = '9'; - printf("cmodmco"); - return 0; + c1 = tolower(c1); + c2 = tolower(c2); + + if (c1 == c2) return 1; + return table[(unsigned char)c1] == c2; +} + +// Функція для перевірки, чи міститься шуканий рядок у назві +int isHack3rMatch(const char *name, const char *search) { + int name_len = strlen(name); + int search_len = strlen(search); + + for (int i = 0; i <= name_len - search_len; i++) { + int match = 1; + for (int j = 0; j < search_len; j++) { + if (!isHack3rEquivalent(name[i + j], search[j])) { + match = 0; + break; + } + } + if (match) return 1; + } + return 0; +} + +int main() { + char search[100]; + char name[100]; + char price[20]; + int count = 0; + + printf("Zadaj hladanu surovinu:\n"); + fgets(search, sizeof(search), stdin); + search[strcspn(search, "\n")] = 0; // видаляємо символ нового рядка + + printf("Zadaj jedalny listok:\n"); + + while (fgets(name, sizeof(name), stdin)) { + // Якщо не вдається зчитати ціну або назву, зупиняємо програму + if (fgets(price, sizeof(price), stdin) == NULL || strlen(name) == 0) { + printf("Chyba pri nacitani.\n"); + break; + } + + // видаляємо символи нового рядка + name[strcspn(name, "\n")] = 0; + price[strcspn(price, "\n")] = 0; + + // Перевіряємо наявність шуканого рядка + if (isHack3rMatch(name, search)) { + printf("%s\n%s\n", name, price); + } + count++; + } + + printf("Nacitanych %d poloziek.\n", count); + return 0; }