Created
September 14, 2016 14:06
-
-
Save gempir/26960ae1431d65f753d0cd3f1fcfae55 to your computer and use it in GitHub Desktop.
Rekursion Aufgabe 1.cs
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
using System; | |
using System.Collections.Generic; | |
namespace a | |
{ | |
class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
Console.WriteLine(getSumUpTo(2)); | |
Console.ReadKey(); | |
} | |
public static int getSumUpTo(int num) | |
{ | |
int sum = 0; | |
for (int i = 0; i <= num; i++) | |
{ | |
sum += i; | |
} | |
return sum; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment