🎓 Check Out My Top 25 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare
In this guide, you will learn about the Scanner nextDouble() method in Java programming and how to use it with an example.
1. Scanner nextDouble() Method Overview
Definition:
The nextDouble() method of the Scanner class in Java is used to obtain the input as a double. This method parses the next token of the input as a double value.
Syntax:
public double nextDouble()
Parameters:
This method does not take any parameters.
Key Points:
- The method throws InputMismatchException if the next token cannot be translated into a valid double value.
- If the translation is successful, the scanner advances past the input that matched.
- One needs to be cautious when mixing nextDouble() with other next...() methods, especially nextLine(), as they may not consume the entire line, potentially leaving a newline character in the buffer.
2. Scanner nextDouble() Method Example
import java.util.Scanner;
public class ScannerExample {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter a double value:");
double value = scanner.nextDouble();
System.out.println("Double the entered value is: " + (value * 2));
}
}
Output:
Enter a double value: 12.5 Double the entered value is: 25.0
Explanation:
In the provided example, we have instantiated an object of the Scanner class.
We then use the nextDouble() method to read a double value from the user.
The program then prints out the double of the entered value. As can be seen, this method reads and processes the input as a double until it encounters a non-double value or a newline.
My Top and Bestseller Udemy Courses. The sale is going on with a 70 - 80% discount. The discount coupon has been added to each course below:
Build REST APIs with Spring Boot 4, Spring Security 7, and JWT
[NEW] Learn Apache Maven with IntelliJ IDEA and Java 25
ChatGPT + Generative AI + Prompt Engineering for Beginners
Spring 7 and Spring Boot 4 for Beginners (Includes 8 Projects)
Available in Udemy for Business
Building Real-Time REST APIs with Spring Boot - Blog App
Available in Udemy for Business
Building Microservices with Spring Boot and Spring Cloud
Available in Udemy for Business
Java Full-Stack Developer Course with Spring Boot and React JS
Available in Udemy for Business
Build 5 Spring Boot Projects with Java: Line-by-Line Coding
Testing Spring Boot Application with JUnit and Mockito
Available in Udemy for Business
Spring Boot Thymeleaf Real-Time Web Application - Blog App
Available in Udemy for Business
Master Spring Data JPA with Hibernate
Available in Udemy for Business
Spring Boot + Apache Kafka Course - The Practical Guide
Available in Udemy for Business
Comments
Post a Comment
Leave Comment