From 96df60657966f3934451ecd6da92d63a500adcf7 Mon Sep 17 00:00:00 2001 From: Franciszek Malinka Date: Fri, 26 Mar 2021 18:09:15 +0100 Subject: changed dirs names --- Semestr 4/ask/lista 2/ask21_lista_2.pdf | Bin 137597 -> 0 bytes Semestr 4/ask/lista 2/pom.c | 38 -------------------------------- 2 files changed, 38 deletions(-) delete mode 100644 Semestr 4/ask/lista 2/ask21_lista_2.pdf delete mode 100644 Semestr 4/ask/lista 2/pom.c (limited to 'Semestr 4/ask/lista 2') diff --git a/Semestr 4/ask/lista 2/ask21_lista_2.pdf b/Semestr 4/ask/lista 2/ask21_lista_2.pdf deleted file mode 100644 index e6df9d7..0000000 Binary files a/Semestr 4/ask/lista 2/ask21_lista_2.pdf and /dev/null differ diff --git a/Semestr 4/ask/lista 2/pom.c b/Semestr 4/ask/lista 2/pom.c deleted file mode 100644 index 87d542d..0000000 --- a/Semestr 4/ask/lista 2/pom.c +++ /dev/null @@ -1,38 +0,0 @@ -#include -#include -#include - -char* utb(uint32_t x) { - static char rep[36]; - int cnt = 34; - for (int i = 0; i < 32; i += 1) { - if (i > 0 && i % 8 == 0) { - rep[cnt] = ' '; - cnt -= 1; - } - rep[cnt] = (x & 1) + '0'; - cnt -= 1; - x >>= 1; - } - rep[35] = '\0'; - return rep; -} - -void pb(uint32_t x) { - printf("%s : %d\n", utb(x), x); -} - -// int main() { -// /* Zadanie 1 */ - -// int32_t x; -// x = (1<<31); -// printf("%d, %d, %d %d\n", x, (x > 0), x-1, (x - 1 < 0)); -// } - -int main() { - /* Zadanie 1 */ - int32_t x; - scanf("%d", &x); - printf("%d %d\n", x*x, INT_MIN); -} \ No newline at end of file -- cgit v1.2.3