Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
School/C# - Beginner (Denis)/Lesson 62/lesson_62.cs
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
48 lines (43 sloc)
1016 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var result = GetResult(new int[] { -3, -2, -1, 0, 1, 2, 3 }); | |
Console.WriteLine(result); // 6 | |
Console.Read(); | |
} | |
static int GetResult(int[] numbers) | |
{ | |
int limit = 0; | |
// локальная функция | |
bool IsMoreThan(int number) | |
{ | |
return number > limit; | |
} | |
int result = 0; | |
for (int i = 0; i < numbers.Length; i++) | |
{ | |
if (IsMoreThan(numbers[i])) | |
{ | |
result += numbers[i]; | |
} | |
} | |
return result; | |
} | |
} | |
static int GetResult(int[] numbers) | |
{ | |
// статическая локальная функция | |
static bool IsMoreThan(int number) | |
{ | |
int limit = 0; | |
return number > limit; | |
} | |
int result = 0; | |
for (int i = 0; i < numbers.Length; i++) | |
{ | |
if (IsMoreThan(numbers[i])) | |
result += numbers[i]; | |
} | |
return result; | |
} |