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