summaryrefslogtreecommitdiff
path: root/4p1.cpp
diff options
context:
space:
mode:
Diffstat (limited to '4p1.cpp')
-rw-r--r--4p1.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/4p1.cpp b/4p1.cpp
new file mode 100644
index 0000000..38bc535
--- /dev/null
+++ b/4p1.cpp
@@ -0,0 +1,16 @@
+#include <iostream>
+#include <vector>
+
+/*
+ *
+ * 4.1
+ *
+ *
+ */
+
+int main () {
+
+ // It will print: 105
+ std::cout << 5 + 10 * 20/2 << std::endl;
+ return 0;
+}