While Loop – Exercise

preview_player
Показать описание
Java Programming: While Loop Exercise in Java Programming
Topics Discussed:
1. Reading an integer between 1 and 10 from the user with the help of While loop.

Music:
Axol x Alex Skrindo - You [NCS Release]

#JavaByNeso #JavaProgramming #WhileLoop
Рекомендации по теме
Комментарии
Автор

The way Neso Academy explaining concepts is Excellent.

nehal
Автор

East or west our neso java sir is the best....

suheabkhan
Автор

2morrow I have exam from Java And I found this channel very helpful. I will study after exams too ❤thanks Neso

Atanepes
Автор

Realness
thanks very much for all the JAVA tutorials

leonetechsports
Автор

Brilliant explanation.simply thanking neso academy is not enough.

maraimugam
Автор

This is easier to understand than my professor's discussion. Thanks

miladyrialey
Автор

You are a legend. Please continue making useful videos

qusaiclasher
Автор

whatrr aa explanationnn sirrrr ❤❤❤ thrank you from me (rohit ).
thranks a lot sirr ❤❤❤❤❤😅

shobhitthapliyal
Автор

Excellent lecture. This is my code, which worked, continuing to watch your solution:

public class Main {

public static void main(String[] args) {
System.out.print("enter a number between 1 and 10: ");
Scanner number = new Scanner(System.in);
int f = number.nextInt();
while (f<1 || f>10) {
System.out.print(f + " is not between 1 and 10. Try again: ");
f = number.nextInt();
}
System.out.println(f + " is between 1 and 10. Thanks!");
}
}

hikmathasanov
Автор

public static void main (String args[])
{
Scanner num=new Scanner(System.in);


while (true)
{
System.out.println("enter the number between 1 and 10");
int n=num.nextInt();
if (n>10 || n<0)
{
enter the correct number");
n=num.nextInt();
}
else
{
System.out.println(n +" "+"is between 1 and 10 thanks!");
break;
}

}

thivagarmurugan
Автор

I fucking love this .. better then all smart asses trying to explaing java for beginners

Bishwasification
Автор

I think you should use && inside the while loop

nxtgaming
Автор

What software do you use to code when doing an example

VibeClubVids
Автор

You forgot to ask the user for number between 1 and 10. They will wonder what the input should be. Great lesson nonetheless.❤

ben-twenty
Автор

sir why you are using "||" (or)operator and not using "&&" operator in while() condition.

shivbaboo
Автор

import java.util.Scanner;

public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);

boolean isTrue = false;
System.out.print("Enter a number between 1 and 10: ");
while (!isTrue) {
int num = input.nextInt();
if (num < 1 || num > 10) {
System.out.println(num + " is not between 1 and 10. Please try again.");
} else {
System.out.println(num + " is between 1 and 10. Thank you!");
isTrue = true;
}
}
}
}

Absalatreal
Автор

Hello neso academy, I am waiting for Data structure course. Please tell me release date.

ShahNawaz-cxpi
Автор

cant we use another variable i with n?

swarnenduchakraborty
Автор

Why if I do not write this line in the while body, it becomes a loop? Or how is it possible that simply writing this line, it stops the while loop? n = s.nextInt();

jackrussel
Автор

import java.util.Scanner;

public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Give num 1-10: ");
int inp = scanner.nextInt();
if (inp <= 10 && inp >= 0) {
System.out.println("Inp was " + inp);
} else {
System.out.println("Inp was not in range of 1 and 10");
}
}
}

kzzazzip