update
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(void) {
|
||||
printf("%d\n", 73<<4);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(void) {
|
||||
printf("%x\n", 73);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
Executable
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
@@ -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
|
||||
@@ -0,0 +1,11 @@
|
||||
16
|
||||
4
|
||||
338
|
||||
5
|
||||
0
|
||||
-6
|
||||
-1
|
||||
0
|
||||
60
|
||||
-6
|
||||
4
|
||||
Reference in New Issue
Block a user