19
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int getal = 5;
8
9
Optellen(getal);
10
11
Console.WriteLine(getal);
12
}
13
14
public static void Optellen(int getal){
15
16
getal = getal + 1;
17
18
}
19
}
Cached Result
5
5.9
6.9
4.1
5
6
3.1
4
5
2.1
3
4
1.1
2
3
5.9
6.9
4.1
5
6
3.1
4
5
2.1
3
4
1.1
2
3