Java Bangla Tutorials 39 : do while loop

preview_player
Показать описание
➡️ In this video, I will introduce you to do while loop.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:12) do while loop
⌨️ (04:50) outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS office to improve your skill? Checkout following playlists :

#java #anisul_islam #java_bangla_tutorial #web_development #bangla_web_development #andorid #javaprogramming #javatutorial #bangla_tutorial #java_anisul_islam
Рекомендации по теме
Комментарии
Автор

আপনার বুঝানোর ধরনই আলাদা। ভিডিও দেখে খুব সহজেই টপিকগুলো শেখা যায়। আপনি চালিয়ে যান। আমরা আপনার সাথে আছি।
Thanks a lot

PCDofTechnology
Автор

Thanks vaiea.... amader jonno ato sundor aktaa playlist toyri korar jonno. valobasha roylo vaiea apnar jonno....

mdrijveeahmedrabbi
Автор

Thanks bro, really love ur teaching & enjoy it as well.
I wrote a code using do while loop, which prints Subhanallah 33 times, Alhamdulillah 33 times & Allahu Akbar 34 times.
public class DoWhileLoopDemo {
public static void main(String[] aregs) {

// do while loop
int i = 1;
do {
System.out.println(i + " Subhanallah");
i++;

} while (i <= 33);
int j = 1;
do {
System.out.println(j + " Alhamdulillah");
j++;

} while (j <= 33);
int k = 1;
do {
System.out.println(k + " Allahu Akbar");
k++;

} while (k <= 34);
}

}

fajlechoudhury
Автор

package newpackage;


public class DoWhileLoop {
public static void main(String[] args) {
int i = 1;
do{
System.out.println("I Love My Country");
i++;

}while(i<=10);
}
}

tomabanik
Автор

package ControlStatement;


public class DoWhileLoop {
public static void main(String[] args){
int i=1;
do{
System.out.println(i);
i+=2;
}while(i<=100);
}

}

mhs_
Автор

package startjava;

import java.util.Scanner;


public class DoWhileloop {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int i = 1, n;
System.out.print("Enter any numbers : ");
n = input.nextInt();

System.out.println("Printing the even numbers : ");
do
{
System.out.println(i);
i=i+2;

}while(i<=n);
}

}

sitanath
Автор

package secondhomework;

public class DoWhileLoop {

public static void main(String[] args) {
int i = 1;
do
{
System.out.println("Sylhet Engineering College");
i++;
}while(i <= 10);
System.out.println("Print from 2 to 100");
int j = 2;
do
{
System.out.println(j);
j = j + 2;
}while (j <= 100);
}

}

elorabarua
Автор

package javaaplication;

public class DoWhile {

public static void main(String[] args) {
int i;
i = 1;
do {
System.out.println(i);
i++;
} while (i <= 10);
}
}

nishatsultana
Автор

ভাই Float এবং double এই দুইয়ের মধ্যে পার্থক্য কি

miahhamza
Автор

Ami for, while, do while bujhci.
Kew ki amk bolben ai 3 ta loop kokhon kokhon bebohar korbo?❤

aparafat
Автор

Assalamuailakum sir, plz keo ache amake teach korbe bangla te face to face class. And ami UAE te thaki? Amon keo thakle plz comment reply korben.

silamimi
Автор

How are you? How I can contact with your?

erickbarikdar
Автор

package datatype;


public class DoWhile30 {

public static void main(String[] args) {


int i=1;
do{
System.out.println("SEC");
i++;
}while(i<=10);
}

susmita
Автор

Thanks a lot Anisul vai.ami ekjon forms developer.ami akjon java web base software developer hote chai!

md.alauddinahmed
Автор

package hello.world;
public class ForLoop {
//for loop more and more
public static void main(String[] args){

//do while loop
//initializtion
int i = 100;
do{


i=i-3;//increment/decriment


}while(i>=0);//condition

}

}

robinvlogs
Автор

package hello.world;
public class ForLoop {
//for loop more and more
public static void main(String[] args){

//do while loop
//initializtion
int i = 1;
do{


i++;//increment/decriment


}while(i<=100);//condition

}

}

robinvlogs
Автор

package datatype;


public class DoWhile30 {

public static void main(String[] args) {


int i=0;
do{
System.out.println(i+" ");
i+=5;
}while(i<=100);
}



}

susmita
Автор

package javaaplication;

public class DoWhilEven {

public static void main(String[] args) {
int i;
i = 2;
do {
System.out.println(i);
i = i + 2;
} while (i <= 20);

}
}

nishatsultana