Home »
.Net »
C# Programs
C# | Print numbers from 1 to 15 using do while loop
C# do while loop Example: Here, we are going to learn how to print numbers from 1 to 15 do while loop in C# programming language?
Submitted by Pankaj Singh, on December 01, 2018 [Last updated : March 19, 2023]
Here, we have to print the numbers from 1 to 15 using do while loop in C#.
C# program to print numbers from 1 to 15 using do while loop
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Loop2 {
class Program {
static void Main(string[] args) {
int a;
a = 1;
do {
Console.WriteLine(a);
a++;
} while (a <= 15);
//wait to hit any key to exit the program
Console.ReadKey();
}
}
}
Output
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
C# Basic Programs »