Skip to content

Commit 4470fc8

Browse files
committed
Fixed links:
(1) judge.softunibg --> judge.softuni.org (2) http:// links --> https:// links
1 parent 70e16be commit 4470fc8

File tree

202 files changed

+380
-380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+380
-380
lines changed

Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/expression.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818

1919
#### Тестване в Judge системата
2020

21-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/503#1](https://judge.softuni.bg/Contests/Practice/Index/503#1).
21+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/503#1](https://judge.softuni.org/Contests/Practice/Index/503#1).
2222

2323
![](/assets/chapter-1-images/02.Expression-03.png)

Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/numbers-1-to-20.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222

2323
#### Тестване в Judge системата
2424

25-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/503#2](https://judge.softuni.bg/Contests/Practice/Index/503#2).
25+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/503#2](https://judge.softuni.org/Contests/Practice/Index/503#2).
2626

2727
Сега помислете дали може да напишем програмата по **по-умен начин**, така че да не повтаряме 20 пъти една и съща команда. Потърсете в Интернет информация за "**[for loop C#](https://www.google.bg/search?q=for+loop+C%23&oq=for+loop+C%23)**".

Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/rectangle-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030

3131
#### Тестване в Judge системата
3232

33-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/503#4](https://judge.softuni.bg/Contests/Practice/Index/503#4).
33+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/503#4](https://judge.softuni.org/Contests/Practice/Index/503#4).
3434

Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/square-of-stars.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020

2121
#### Тестване в Judge системата
2222

23-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/503#5](https://judge.softuni.bg/Contests/Practice/Index/503#5).
23+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/503#5](https://judge.softuni.org/Contests/Practice/Index/503#5).

Content/Chapter-1-first-steps-in-programming/exercises-first-steps-in-coding/triangle-of-stars.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ Console.WriteLine("**");
2626

2727
#### Тестване в Judge системата
2828

29-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/503#3](https://judge.softuni.bg/Contests/Practice/Index/503#3).
29+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/503#3](https://judge.softuni.org/Contests/Practice/Index/503#3).
3030

3131
Опитайте да **подобрите решението**, така че да няма много повтарящи се команди. Може ли това да стане с **`for`** цикъл? Успяхте ли да намерите умно решение (например с цикъл) на предната задача? При тази задача може да се ползва нещо подобно, но малко по-сложно (два цикъла един в друг). Ако не успеете, няма проблем, ще учим цикли след няколко глави и ще си спомните за тази задача тогава.

Content/Chapter-1-first-steps-in-programming/how-to-write-console-app/example-hello-csharp/test-in-judge.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
### Тестване на програмата в Judge системата
22

3-
Тестването на задачите от тази книга е автоматизирано и се осъществява през Интернет, от сайта на **Judge системата**: [https://judge.softuni.bg](https://judge.softuni.bg). Оценяването на задачите се извършва на момента от системата. Всяка задача минава поредица от тестове, като всеки успешно преминат тест дава предвидените за него точки. Тестовете, които се подават на задачите, са скрити.
3+
Тестването на задачите от тази книга е автоматизирано и се осъществява през Интернет, от сайта на **Judge системата**: [https://judge.softuni.org](https://judge.softuni.org). Оценяването на задачите се извършва на момента от системата. Всяка задача минава поредица от тестове, като всеки успешно преминат тест дава предвидените за него точки. Тестовете, които се подават на задачите, са скрити.
44

5-
Горната програма може да тестваме тук: [https://judge.softuni.bg/Contests/Practice/Index/503#0](https://judge.softuni.bg/Contests/Practice/Index/503#0). Поставяме целия сорс код на програмата в черното поле и избираме **C# code**, както е показано тук:
5+
Горната програма може да тестваме тук: [https://judge.softuni.org/Contests/Practice/Index/503#0](https://judge.softuni.org/Contests/Practice/Index/503#0). Поставяме целия сорс код на програмата в черното поле и избираме **C# code**, както е показано тук:
66

77
![](/assets/chapter-1-images/01.Hello-csharp-06.png)
88

Content/Chapter-1-first-steps-in-programming/what-it-is-to-program/programming-languages-compilers/programming-languages-compilers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
**Средите за програмиране** са удобни, защото интегрират всичко необходимо за разработката на програмата, без да се напуска средата. Ако не ползваме среда за разработка, ще трябва да пишем кода в текстов редактор, да го компилираме с команда от конзолата, да го изпълняваме с друга команда от конзолата и да пишем още допълнителни команди, когато се налага, и това ще ни губи време. Затова повечето програмисти ползват IDE в ежедневната си работа.
1212

13-
За програмиране на **езика C#** най-често се ползва средата за разработка **Visual Studio**, която се разработва и разпространява безплатно от Microsoft и може да се изтегли от: https://www.visualstudio.com/downloads/. Алтернативи на Visual Studio са **Rider** (https://www.jetbrains.com/rider/) и **MonoDevelop** / **Xamarin Studio** (http://www.monodevelop.com) и **SharpDevelop** (http://www.icsharpcode.net/OpenSource/SD/). В настоящата книга ще използваме средата за разработка Visual Studio.
13+
За програмиране на **езика C#** най-често се ползва средата за разработка **Visual Studio**, която се разработва и разпространява безплатно от Microsoft и може да се изтегли от: https://www.visualstudio.com/downloads. Алтернативи на Visual Studio са **Rider** (https://www.jetbrains.com/rider), **MonoDevelop** (https://www.monodevelop.com) и **Visual Studio Code** (https://code.visualstudio.com). В настоящата книга ще използваме средата за разработка Visual Studio.

Content/Chapter-10-methods/exercises-methods/hello-name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
#### Тестване в Judge системата
1616

17-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#7](https://judge.softuni.bg/Contests/Practice/Index/594#7).
17+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#7](https://judge.softuni.org/Contests/Practice/Index/594#7).

Content/Chapter-10-methods/exercises-methods/integer-to-base.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ static string IntegerToBase(int number, int toBase) {
3030

3131
#### Тестване в Judge системата
3232

33-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#11](https://judge.softuni.bg/Contests/Practice/Index/594#11).
33+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#11](https://judge.softuni.org/Contests/Practice/Index/594#11).

Content/Chapter-10-methods/exercises-methods/min-method.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ var min = GetMin(GetMin(num1, num2), num3);
1818

1919
#### Тестване в Judge системата
2020

21-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#8](https://judge.softuni.bg/Contests/Practice/Index/594#8).
21+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#8](https://judge.softuni.org/Contests/Practice/Index/594#8).

Content/Chapter-10-methods/exercises-methods/notifications.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
#### Тестване в Judge системата
2727

28-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#12](https://judge.softuni.bg/Contests/Practice/Index/594#12).
28+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#12](https://judge.softuni.org/Contests/Practice/Index/594#12).

Content/Chapter-10-methods/exercises-methods/nth-digit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
#### Тестване в Judge системата
1616

17-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#10](https://judge.softuni.bg/Contests/Practice/Index/594#10).
17+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#10](https://judge.softuni.org/Contests/Practice/Index/594#10).

Content/Chapter-10-methods/exercises-methods/numbers-to-words/guidelines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
#### Тестване в Judge системата
1212

13-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#13](https://judge.softuni.bg/Contests/Practice/Index/594#13).
13+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#13](https://judge.softuni.org/Contests/Practice/Index/594#13).

Content/Chapter-10-methods/exercises-methods/string-encryption/guidelines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
#### Тестване в Judge системата
77

8-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#14](https://judge.softuni.bg/Contests/Practice/Index/594#14).
8+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#14](https://judge.softuni.org/Contests/Practice/Index/594#14).

Content/Chapter-10-methods/exercises-methods/string-repeater.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
#### Тестване в Judge системата
2020

21-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#9](https://judge.softuni.bg/Contests/Practice/Index/594#9).
21+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#9](https://judge.softuni.org/Contests/Practice/Index/594#9).

Content/Chapter-10-methods/methods-overloading/example-greater-of-two-values/read-input-data-and-use-methods.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
#### Тестване в Judge системата
88

9-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#6](https://judge.softuni.bg/Contests/Practice/Index/594#6).
9+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#6](https://judge.softuni.org/Contests/Practice/Index/594#6).

Content/Chapter-10-methods/methods-with-parameters/example-draw-a-filled-square.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424

2525
#### Тестване в Judge системата
2626

27-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#3](https://judge.softuni.bg/Contests/Practice/Index/594#3).
27+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#3](https://judge.softuni.org/Contests/Practice/Index/594#3).

Content/Chapter-10-methods/methods-with-parameters/example-printing-triangle.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030

3131
#### Тестване в Judge системата
3232

33-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#2](https://judge.softuni.bg/Contests/Practice/Index/594#2).
33+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#2](https://judge.softuni.org/Contests/Practice/Index/594#2).

Content/Chapter-10-methods/methods-with-parameters/example-sign-of-int-number.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424

2525
#### Тестване в Judge системата
2626

27-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#1](https://judge.softuni.bg/Contests/Practice/Index/594#1).
27+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#1](https://judge.softuni.org/Contests/Practice/Index/594#1).

Content/Chapter-10-methods/return-result-from-method/example-calc-triangle-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020

2121
#### Тестване в Judge системата
2222

23-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#4](https://judge.softuni.bg/Contests/Practice/Index/594#4).
23+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#4](https://judge.softuni.org/Contests/Practice/Index/594#4).

Content/Chapter-10-methods/return-result-from-method/example-math-power.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
#### Тестване в Judge системата
2020

21-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/594#5](https://judge.softuni.bg/Contests/Practice/Index/594#5).
21+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/594#5](https://judge.softuni.org/Contests/Practice/Index/594#5).

Content/Chapter-10-methods/what-method-is/example-blank-recepit/guidelines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616

1717
#### Тестване в Judge системата
1818

19-
Програмата с общо пет метода, които се извикват един от друг, е готова и можем **да я изпълним и тестваме**, след което да я пратим за проверка в judge системата: [https://judge.softuni.bg/Contests/Practice/Index/594#0](https://judge.softuni.bg/Contests/Practice/Index/594#0).
19+
Програмата с общо пет метода, които се извикват един от друг, е готова и можем **да я изпълним и тестваме**, след което да я пратим за проверка в judge системата: [https://judge.softuni.org/Contests/Practice/Index/594#0](https://judge.softuni.org/Contests/Practice/Index/594#0).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/1000-days-after-birth/1000-days-after-birth.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
#### Тестване в Judge системата
2020

21-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#12](https://judge.softuni.bg/Contests/Practice/Index/504#12).
21+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#12](https://judge.softuni.org/Contests/Practice/Index/504#12).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/celsius-to-fahrenheit/celsius-to-fahrenheit.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Задача: конзолен конвертор - от градуси °C към градуси °F
22

3-
Напишете програма, която чете **градуси по скалата на Целзий** (°C) и ги преобразува до **градуси по скалата на Фаренхайт** (°F). Потърсете в Интернет подходяща [формула](http://bfy.tw/3rGh "Търсене в Google"), с която да извършите изчисленията. Закръглете резултата до **2 символа след десетичния знак**. Ето няколко примера:
3+
Напишете програма, която чете **градуси по скалата на Целзий** (°C) и ги преобразува до **градуси по скалата на Фаренхайт** (°F). Потърсете в Интернет подходяща [формула](https://bfy.tw/3rGh "Търсене в Google"), с която да извършите изчисленията. Закръглете резултата до **2 символа след десетичния знак**. Ето няколко примера:
44

55
#### Примерен вход и изход
66

@@ -13,4 +13,4 @@
1313

1414
#### Тестване в Judge системата
1515

16-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#8](https://judge.softuni.bg/Contests/Practice/Index/504#8).
16+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#8](https://judge.softuni.org/Contests/Practice/Index/504#8).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/circle-area-and-perimeter/circle-area-and-perimeter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
#### Тестване в Judge системата
1919

20-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#5](https://judge.softuni.bg/Contests/Practice/Index/504#5).
20+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#5](https://judge.softuni.org/Contests/Practice/Index/504#5).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/concatenate-data/concatenate-data.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
#### Тестване в Judge системата
2020

21-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#3](https://judge.softuni.bg/Contests/Practice/Index/504#3).
21+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#3](https://judge.softuni.org/Contests/Practice/Index/504#3).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/currency-converter/currency-converter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
#### Тестване в Judge системата
2121

22-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#11](https://judge.softuni.bg/Contests/Practice/Index/504#11).
22+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#11](https://judge.softuni.org/Contests/Practice/Index/504#11).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/greeting-by-name/greeting-by-name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
#### Тестване в Judge системата
2020

21-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#2](https://judge.softuni.bg/Contests/Practice/Index/504#2).
21+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#2](https://judge.softuni.org/Contests/Practice/Index/504#2).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/inches-to-centimeters/testing-in-judge.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#### Тестване в Judge системата
22

3-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#1](https://judge.softuni.bg/Contests/Practice/Index/504#1).
3+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#1](https://judge.softuni.org/Contests/Practice/Index/504#1).
44

55
Решението би трябвало да бъде прието като напълно коректно:
66

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/radians-to-degrees/radians-to-degrees.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313

1414
#### Тестване в Judge системата
1515

16-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#9](https://judge.softuni.bg/Contests/Practice/Index/504#9).
16+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#9](https://judge.softuni.org/Contests/Practice/Index/504#9).

Content/Chapter-2-1-simple-calculations/exercises-simple-calculations/rectangle-area/rectangle-area.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
#### Тестване в Judge системата
1616

17-
Тествайте решението си тук: [https://judge.softuni.bg/Contests/Practice/Index/504#6](https://judge.softuni.bg/Contests/Practice/Index/504#6).
17+
Тествайте решението си тук: [https://judge.softuni.org/Contests/Practice/Index/504#6](https://judge.softuni.org/Contests/Practice/Index/504#6).

0 commit comments

Comments
 (0)