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
1e4c108f
Commit
1e4c108f
authored
Mar 11, 2019
by
Нурмухаметов Вадим Наилович
⌨
Browse files
Update if.md
parent
689e660f
Changes
1
Show whitespace changes
Inline
Side-by-side
if.md
View file @
1e4c108f
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
if (v <= 5) v = 10;
if (v <= 5) v = 10;
```
```
или
или
```
cs
s
harp
```
csharp
if
(
v
<=
5
)
{
v
=
10
;
}
if
(
v
<=
5
)
{
v
=
10
;
}
```
```
-
В две строки
-
В две строки
...
@@ -19,3 +19,11 @@
...
@@ -19,3 +19,11 @@
v = 10;
v = 10;
}
}
```
```
**Простое условие + несколько строк кода**
```
csharp
if
(
v
<=
5
)
{
v
=
10
;
res
=
10
/
4
;
}
```
\ 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