Skip to content

Instantly share code, notes, and snippets.

@gempir
Created September 14, 2016 14:06
Show Gist options
  • Save gempir/26960ae1431d65f753d0cd3f1fcfae55 to your computer and use it in GitHub Desktop.
Save gempir/26960ae1431d65f753d0cd3f1fcfae55 to your computer and use it in GitHub Desktop.
Rekursion Aufgabe 1.cs
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