Skip to content

Commit 2084323

Browse files
author
Svetlin Nakov
committed
Updates Content/Chapter-2-1-simple-calculations/numerical-expressions/numerical-expressions.md
Auto commit by GitBook Editor
1 parent d1b9b0e commit 2084323

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

Content/Chapter-2-1-simple-calculations/concatenating-text-and-numbers/concatenating-text-and-numbers.md

-3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,3 @@ var b = 2.5;
3333
var sum = "The sum is: " + (a + b);
3434
Console.WriteLine(sum); // The sum is: 4
3535
```
36-
37-
38-

Content/Chapter-2-1-simple-calculations/numerical-expressions/numerical-expressions.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Test your solution here : [https://judge.softuni.org/Contests/Practice/Index/504
3939

4040
## Example: Circle Area and Perimeter
4141

42-
Let's write a program that calculates **a circle area and perimeter** by reading its **radius r** .
42+
Let's write a program that calculates **a circle area and perimeter** by reading its **radius r**.
4343

4444
Formulas:
4545

@@ -109,6 +109,3 @@ var date = new DateTime(2017, 6, 14);
109109
var dateAfter5days = date.AddDays(5); // 14-Jun-17
110110
Console.WriteLine(dateAfter5days); // 19-Jun-17 00:00:00
111111
```
112-
113-
114-

0 commit comments

Comments
 (0)