diff options
author | Oskar <[email protected]> | 2024-08-15 21:22:06 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-15 21:22:06 +0200 |
commit | ccf67ccfcf7fa892559db8d1475c3217e9692ae2 (patch) | |
tree | c2291f2a5290e1f5ddbfd719db55b7aa8f254484 /4p1.cpp | |
parent | 38e3c732d86165a84cd872e96e10ca1e811f2bb1 (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.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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; +} |