summaryrefslogtreecommitdiff
path: root/4p4.cpp
diff options
context:
space:
mode:
Diffstat (limited to '4p4.cpp')
-rw-r--r--4p4.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/4p4.cpp b/4p4.cpp
new file mode 100644
index 0000000..d290a85
--- /dev/null
+++ b/4p4.cpp
@@ -0,0 +1,16 @@
+#include <iostream>
+
+/*
+ *
+ * 4.4
+ *
+ *
+ */
+
+int main () {
+
+ int res1 = ((((12 / 3) * 4) + (5 * 15)) + ((24 % 4) / 2));
+ int res2 = 12 / 3 * 4 + 5 * 15 + 24 % 4 / 2;
+ std::cout << res1 << " " << res2 << std::endl;
+ return 0;
+}