P24 - Looping statements (while & do-while) in Java | Core Java | Java Programming |

preview_player
Показать описание
In this video, I have explained about "Looping statements (while & do-while) in java".

Points covered in this video:
❇️ What is a looping statement?
❇️ Different types of looping statement in java
❇️ Syntax for while and do-while statements in java
❇️ Hands on experience with while and do-while statements in java

🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶🔶

===================================
===================================
Connect me @
===================================
===================================
🙏 Please Subscribe🔔 to start learning for FREE now, Also help your friends in learning the best by suggesting this channel.

#hyrtutorialstelugu #selenium #java #telugu
Java programming by Yadagiri Reddy
Рекомендации по теме
Комментарии
Автор

We Are Really Feeling Proud To Have A Person Like You In Telugu Community, I Always Share Your Videos With My Friends Who are Working On Java, Hope Your Channel Will Reach Great Heights Soon, Thankyou Sir ♥️

forbidden
Автор

Concepts artham kaka edustu YouTube lo search chesa sir Mee videos chusaka nenu program cheyagalanu ani hope vachindhi thank u soo much sir

dhanapilli
Автор

This would be the best java playlist I would suggest to any one, awesome

ganeshnadipalli
Автор

Sir nenu already java course chasanu kani mi videos chusi napudu
Kothaga Inka chala Baga ardham ayithadhi

OpinionOfX
Автор

I have seen every video of your course and learns a lot… I wanted to give you small compliment. I have never seen such level of patience in anyone. The way of explanation in detail and you convert yourself as a leaner while teaching. And one more thing wanted to mention, for each comment for each video you r replied and that says your level of patiency… Soon wanted to cross your channel 💯 K mark in short time 🫡🫡🫡

jayababureddy
Автор

Like ur vedios, im homemaker nen institute ki velli course nerchukune chance ledhu, but luckily me channel chusanu .i learnt lot of knowledge through your vedios.thankyou so much

umaprasannagudipudi
Автор

->Printing the numbers which are divisible by 7 from 150 to 200:

package com.samlooping;
public class Rangeloop {
public static void main(String[] args) {
int i=150;
while(i<200)
{
if(i%7==0)
{
System.out.println(i);
}
i++;
}
}
}

kandurilakshmisreevalli
Автор

I fall in love in your teaching style thank you very much for helping us

ramakrushnadosapalli
Автор

Hi Bro, i really understood everything from this video crisp and clear even about debugging but i really want you to do one video on "DEBUGGING"🙏🙏. Plz consider it, i know there are lot of other channels that explains it, but ur way of explaining keeps us entertained(like without skipping a second) and engaing😶‍🌫😶‍🌫. So guys, whoever want one video especially on "DEBUGGING" plz like this comment or comment as "YES" 🙏🙏so that he will make one video based on the number of people otherwise he might not consider . So, ur wish guys🙌 and sir even though there are no likes, please consider making a video of "DEBUGGING".🤗🤗

HSC-useb
Автор

After listening your class is there any chance of not understanding the topic....impossible. great great teaching ever and ever...thank you so much❤

rounaqara
Автор

Perfect teaching & clean Explanation ❤Thank you so much sir, we are always watching your videos 💖

MeetMrMani
Автор

yaada dorakani saduvu sir, idi, nenu lakshalu kattina naaki ilaga cheppaledu maa faculty, pls continue ur videos, never get demotivated, apna college, code with harry lu kooda modatlo views raledu kaani, vallaki long term lo chaala views vachhi popular ayyaru, meeru kooda, alane cheyyandi, definetly success avuthaaru, jai

LoveDaBaba
Автор

i am so happy with your teaching
sir...tell me more shortcuts in ecilipse...

penumajjisivakrishna
Автор

You are a very good teacher sir Even non IT students also learn Java easily
Respect ❤

rohithprabhu
Автор

Thank you sir....🙂

print the odd numbers between 200 to 25 (reverse order) in java using while

public static void main(String[] args) {
int i=25;

int j=200;
int k=0;
while(j >= i) {
if (j%2 !=0) {
System.out.println(j);
}
j--;

giri
Автор

THANK YOU FOR THE ASSIGNMENT SIR.. IT MAKES ME CONFIDENT IN THE CONCEPT

knowhow
Автор

best classes ever sir, i easily get the points, and
very good teaching sir

narsingharshitha
Автор

Assignment -divisible by 7 for the range 150 to 200

package assignments;
import java.util.*;

public class even_numbers {

public even_numbers(int i, int a) {
while(i<=a) {
if(i%7==0) {
System.out.println(i);

}
i++;

}
// TODO Auto-generated constructor stub
}

public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
int i =scanner.nextInt();
int a=scanner.nextInt();
even_numbers e=new even_numbers(i, a);
}

}

konijetisaiabhishek
Автор

thank you so much for your wonderful videos sir, java course kosam search cheyyagaa mee videos kanipinchai sir nenu chaala lucky mee videos kanipinchinanduku if i miss your videos i miss a wonderfull lessons from u sir, chaala thanks sir free course intha clarity tho chepthunnanduku naaku java ante chaala bayam sir but mee videos valla aa fear poyindi but nenu code understand chesukogalanu sir konchem konchem but raayadaaniki raavatam ledu could you please guide me sir once again thank you for your wonderful sessions sir

Boddapatidivya
Автор

Sir, Your teaching is very good, very easy to understand

sobharanimahi