dev-resources.site
for different kinds of informations.
Nested while loop
Published at
11/2/2024
Categories
cpp
programming
coding
beginners
Author
Sanjar Rashidov
Main Article
Nested while loop - while loop ichida yana boshqa while loop ishlatish.
Syntax of nested while loop:
while(condition)
{
while(condition)
{
statement
++/--
}
statement
++/--
}
Masalan:
#include <iostream>
using namespace std;
int main()
{
int n = 1;
while(n <= 1)
{
while(n <= 7)
{
cout << n << endl;
n++;
}
cout << endl;
n++;
}
return 0;
}
Articles
12 articles in total
IL (Intermediate Language)
read article
CLR (Common Language Runtime)
read article
SDK vs Runtime
read article
.Net tarixi
read article
Arrays
read article
Function
read article
for loop
read article
do while loop
read article
Nested while loop
currently reading
while loop
read article
switch
read article
if else
read article
Featured ones: