Java Bangla Tutorials 42 : break and continue statement

preview_player
Показать описание
➡️ In this video, I introduce you to break and continue statements in Java.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:12) break and continue
⌨️ (08:38) 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
Рекомендации по теме
Комментарии
Автор

প্রিয় (আনিসুল ইসলাম) স্যার,
প্রথমেই আপনাকে অসংখ্য ধন্যবাদ জানাচ্ছি। কারণ, প্রোগ্রামিং বিষয়টা প্রথমে আমার কাছে অনেক বিরক্তিকর মনে হতো। কিন্তু আপনার ভিডিও টিউটোরিয়ালগুলো দেখার পর থেকে প্রোগ্রামিং আমার কাছে অনেকটা সহজ মনে হচ্ছে। আশাকরি, ভবিষ্যতে এরকম আরো অনেক টিউটোরিয়াল আপলোড করে আমাদেরকে উৎসাহিত করবেন।

♥ধন্যবাদ ও শুভেচ্ছান্তে ♥
মোঃ আনোয়ার হোসেন

md.anwarhossain
Автор

আনিস স্যার, আল্লাহ সুবহানাহু ওয়াতা'লা আপনাকে এর প্রতিদান দান করুক

ibntofajjal
Автор

Quiz-1 (Output):
1, 3, 5, 7, 9, 11,

Quiz-2 (Output):
1, 4, 7 (stop).


Quiz-3 (Output):
1, 4, 7, 13 (stop).


Thank you very much, sir. It was very complicated, but you have explained it very accurately and simply. Thank you once again!

HamidaAkhterChowdhury
Автор

package javaproject;

public class BreakDemo {
public static void main(String[] args) {
for(int i=1;i<100;i=i+2){
if(i==10)
{
break;
}
System.out.println(i);
}

}

TikTokFunnyBD
Автор

vai, thanks.apnr video gula amk onk help kortasa..onk moja korei shikhtasi..java akhn amr gf a porinito hoia gasa.and er jnno daee holo apnr cute tutorial gulo..go ahead.may Allah help u.

MehediHasan-ghkk
Автор

Your videos are so much helpful to me. I really like your videos. I have learnt many things from your videos.

evamultimediaandentertainm
Автор

bhy apni onk sundor kore bujhan...god bless u....

sabbirsshowbiz.
Автор

Quiz-1 (Output):
1, 3, 5, 7, 9, 11,

Quiz-2 (Output):
1, 4, 7, 13,


Quiz-3 (Output):
1, 4, 7, 13 (stop).

randomlife
Автор

Quiz:3: 1 4 7 print hobe.. then (i==10) continue er jonne 10 print na hoya loop a fira jabe then i=13 hoya jabe. then continue thake nisa ase (13<10) so break; korbe then abr loop a firajabe. avbe cholte thakbe but output SOUT sudu 3bar kaj korbe

subrotobasak
Автор

Quiz 2 =
Quiz 3 = 1, 1, 4, 7, 13 (stop).

ধন্যবাদ ভাইয়া। এত সুন্দর টিউটোরিয়াল উপহার দেয়ার জন্য।

mahdihasan
Автор

এত সহজভাবে বুঝিয়ে দেবার পরেও যারা unlike দিয়েছে তাদের মতো গরু আর হয়তো নেই😂😂

riyamajee
Автор

The output for quiz 1 following
1 to 99, all odd numbers. This break will never work because the given condition is 10, which is even, and we got odd numbers in the loop. Therefore this loop will work until the endpoint.

sabbirhossain
Автор

Your videos are really good. Please make videos on data structure using Java.

hasan
Автор

i liked your every videos which i had seen.

laturimaro
Автор

alhamdulillaah


done
QUIZ-1: Output = 1 3 5 7 9 11
QUIZ-2: Output = 1 4 7
QUIZ-3: Output = 1 4 7 13

hmarafat
Автор

Quiz 1-
1 3 5 7 9 11 13 15 17 19 21 23 25 27 29....99
Quiz 2-
1 4 7
Quiz-3
1 4 7 13

faisalosman
Автор

quiz 3 ans : continue statement er somoy 7 projonto print hobe, 10 na hoye next value te cole zabe (13).finally 100 er purbo porjonto print hobe condition onuzayi8


ar break statement er belay 10 hoye loop break korbe

rhrifat
Автор

Quiz 1:-1, 3, 5, 7, 9.
Quiz 2:- 1, 4, 7.
Quiz 3:- 1, 4, 7, 13.

efti
Автор

Quiz 3: 1 4 7 13(continue)
1 4 7 13(break)

shohanurrahmanshohan
Автор

for(int i=1; i<100; i++){
if(i==10){
break;
Answer =
1
2
3
4
5
6
7
8
9
BUILD SUCCESSFUL (total time: 1 second)

FriendsCommunityReact