18. dowhileloop
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dowhileloopexample
{
class Program
{
static void Main(string[] args)
{
int i = 1;
do
{
Console.WriteLine(i);
i++;
} while (i >= 10);
Console.Read();
}
}
}
OUTPUT:
1
2
3
4
5
6
7
8
9
10
Comments
Post a Comment