Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Docs
General
Commits
16740d79
Commit
16740d79
authored
Mar 05, 2019
by
Нурмухаметов Вадим Наилович
⌨
Browse files
test
parents
Changes
1
Hide whitespace changes
Inline
Side-by-side
if.md
0 → 100644
View file @
16740d79
**Простое условие + одна строка кода**
-
В одну строку
```
cssharp
if (v <= 5) v = 10;
```
или
```
cssharp
if (v <= 5) { v = 10; }
```
-
В две строки
```
cssharp
if (v <= 5)
v = 10;
```
или
```
cssharp
if (v <= 5)
{
v = 10;
}
```
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment