summaryrefslogtreecommitdiff
path: root/4p1.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-08-15 21:22:06 +0200
committerOskar <[email protected]>2024-08-15 21:22:06 +0200
commitccf67ccfcf7fa892559db8d1475c3217e9692ae2 (patch)
treec2291f2a5290e1f5ddbfd719db55b7aa8f254484 /4p1.cpp
parent38e3c732d86165a84cd872e96e10ca1e811f2bb1 (diff)
removed some headers to maybe speed up compile time maybe it will work i dont know
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;
+}