This commit is contained in:
2023-10-23 13:23:36 +02:00
parent 667dae6f1a
commit 322b22f9bf
5711 changed files with 72953 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 73<<4);
return EXIT_SUCCESS;
}

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%x\n", 73);
return EXIT_SUCCESS;
}

View File

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 72);
printf("%d\n", 0110);
printf("%d\n", 0x48);
return EXIT_SUCCESS;
}

View File

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,18 @@
Question 1:
72
58
144
Question 2:
16
4
338
5
0
-6
-1
0
60
-6
4
Question 5:
12*2**7

View File

@@ -0,0 +1,11 @@
16
4
338
5
0
-6
-1
0
60
-6
4