From 6984c8ac564aeb3bc38ea8ee88380d5a3506c0ba Mon Sep 17 00:00:00 2001 From: nyosic Date: Mon, 5 May 2025 13:37:30 +0200 Subject: [PATCH] zmiany --- {1 => 1-inty_itp/1}/main.cpp | 0 {2 => 1-inty_itp/2}/main.cpp | 0 {3 => 2-Typy_Znakowe}/main.cpp | 0 3-Operatory/main.cpp | 23 +++++++++++++++++++++++ 4 files changed, 23 insertions(+) rename {1 => 1-inty_itp/1}/main.cpp (100%) rename {2 => 1-inty_itp/2}/main.cpp (100%) rename {3 => 2-Typy_Znakowe}/main.cpp (100%) create mode 100644 3-Operatory/main.cpp diff --git a/1/main.cpp b/1-inty_itp/1/main.cpp similarity index 100% rename from 1/main.cpp rename to 1-inty_itp/1/main.cpp diff --git a/2/main.cpp b/1-inty_itp/2/main.cpp similarity index 100% rename from 2/main.cpp rename to 1-inty_itp/2/main.cpp diff --git a/3/main.cpp b/2-Typy_Znakowe/main.cpp similarity index 100% rename from 3/main.cpp rename to 2-Typy_Znakowe/main.cpp diff --git a/3-Operatory/main.cpp b/3-Operatory/main.cpp new file mode 100644 index 0000000..c8d33c4 --- /dev/null +++ b/3-Operatory/main.cpp @@ -0,0 +1,23 @@ +/* +Operatory arytmetyczne (+ - * / %) +Operatory przypisania (= += -= *= /= %=) +Operatory inkrementacji i dekrementacji (++, --) + +Np. a++ + ++b + 4 + ++a XXX <- DON'T DO +++i lub i++ +++i - inkrementacja przed użyciem zmiennej +i++ - inkrementacja po użyciu zmiennej + +Operatory relacyjne (== != > < >= <=) +Operatory logiczne (&& || !) +*/ +#include + +using namespace std; + +int main() { + + + system("pause"); + return 0; +} \ No newline at end of file