Commit 51ad73b9 authored by Нурмухаметов Вадим Наилович's avatar Нурмухаметов Вадим Наилович
Browse files

Update if.md

parent 0d5140bf
**Простое условие + одна строка кода** **Простое условие + одна строка кода**
- В одну строку - В одну строку
```cssharp ```csharp
if (v <= 5) v = 10; if (v <= 5) v = 10;
``` ```
или или
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
if (v <= 5) { v = 10; } if (v <= 5) { v = 10; }
``` ```
- В две строки - В две строки
```cssharp ```csharp
if (v <= 5) if (v <= 5)
v = 10; v = 10;
``` ```
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment