13
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int nilai = 1;
8
while (nilai < 6) {
9
Console.WriteLine("Nilai : "+nilai);
10
nilai = nilai + 3;
11
}
12
}
13
}
Cached Result
Compilation error (line 49, col 20): ; expected
Compilation error (line 50, col 20): ; expected
Compilation error (line 49, col 7): The variable 'primeroNumero' is declared but never used
Compilation error (line 50, col 7): The variable 'segundoNumero' is declared but never used
Compilation error (line 51, col 7): The variable 'suma' is declared but never used
Compilation error (line 50, col 20): ; expected
Compilation error (line 49, col 7): The variable 'primeroNumero' is declared but never used
Compilation error (line 50, col 7): The variable 'segundoNumero' is declared but never used
Compilation error (line 51, col 7): The variable 'suma' is declared but never used