diff --git a/.DS_Store b/.DS_Store
index 34a3fe3..b7c9364 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/public/.DS_Store b/public/.DS_Store
index 0b8c138..d902fe9 100644
Binary files a/public/.DS_Store and b/public/.DS_Store differ
diff --git a/public/answers.html b/public/answers.html
index 3ebb634..cda15c2 100755
--- a/public/answers.html
+++ b/public/answers.html
@@ -138,8 +138,8 @@
#include <stdio.h>
int main() {
- int num = 25;
- printf("%c", num);
+ int x = 7;
+ printf("%d", x >> 1);
}
@@ -195,8 +195,8 @@
#include <stdio.h>
int main() {
- int num = 87;
- printf("%02d", num);
+ int number = 1234;
+ printf("%d", number % 100);
}
diff --git a/public/js/answers.js b/public/js/answers.js
index 9e18b67..b564519 100755
--- a/public/js/answers.js
+++ b/public/js/answers.js
@@ -20,10 +20,10 @@ let answers = {
4: "2",
5: "1",
6: "11",
- 7: "Y",
+ 7: "3",
8: "8",
9: "52",
- 10: "87",
+ 10: "34",
11: "4",
12: "3",
13: "7",