15
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int x = 10;
8
do
9
{
10
Console.WriteLine($"Value of x: {x}");
11
x++;
12
}
13
while (x < 20);
14
}
15
}
Cached Result