diff options
author | Oskar <[email protected]> | 2024-08-16 19:00:04 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-08-16 19:00:04 +0200 |
commit | bfa29c55fd58912845b5a6684489231a4d4e675e (patch) | |
tree | 615213f43d685d7cc0b14cac0fcafe70cddb07e7 /4p5.cpp | |
parent | 6ff70adb810f1e194892398656e71f979f088feb (diff) |
more exercises
Diffstat (limited to '4p5.cpp')
-rw-r--r-- | 4p5.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -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; +} |