pause at 41 minutes

This commit is contained in:
2026-01-12 00:05:22 +01:00
parent 0a1934f95a
commit 15462198d5
3 changed files with 131 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
# Arithmetics
## additions
```C#
int friends = 5;
friends = friends + 1;
friends++;
```
## substrack
```C#
friends = friends - 1;
friends -= 1;
```
## multiplications
```C#
friends = friends * 2;
friends *= 2;
```
## division
```C#
friends = friends / 2;
friends /= 2;
```
## modulus
```C#
friends = friends % 3;
```