summaryrefslogtreecommitdiff
path: root/4p5.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-08-16 19:00:04 +0200
committerOskar <[email protected]>2024-08-16 19:00:04 +0200
commitbfa29c55fd58912845b5a6684489231a4d4e675e (patch)
tree615213f43d685d7cc0b14cac0fcafe70cddb07e7 /4p5.cpp
parent6ff70adb810f1e194892398656e71f979f088feb (diff)
more exercises
Diffstat (limited to '4p5.cpp')
-rw-r--r--4p5.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/4p5.cpp b/4p5.cpp
new file mode 100644
index 0000000..abeefdd
--- /dev/null
+++ b/4p5.cpp
@@ -0,0 +1,32 @@
+#include <iostream>
+
+/*
+ *
+ * 4.5
+ *
+ *
+ */
+
+int main () {
+
+ int res_a = -30 * 3 + 21 / 5;
+ int res_b = -30 + 3 * 21 / 5;
+ int res_c = 30 / 3 * 21 % 5;
+ int res_d = -30 / 3 * 21 % 4;
+ int p_res_a = ((-30 * 3) + (21 / 5)); // -86
+ int p_res_b = (-30 + ((3 * 21) / 5)); // -18
+ int p_res_c = (((30 / 3) * 21) % 5); // 0
+ int p_res_d = (((-30 / 3) * 21) % 4); // -2
+
+ std::cout << res_a << "\n"
+ << res_b << "\n"
+ << res_c << "\n"
+ << res_d << "\n" << std::endl;
+
+ std::cout << p_res_a << "\n"
+ << p_res_b << "\n"
+ << p_res_c << "\n"
+ << p_res_d << "\n" << std::endl;
+
+ return 0;
+}