How to read user input from console in Java 25
How to read user input from console in Java 25 problem You’re writing a console application and wish to let the user input some data into the app like his name, age, etc. In this post we will see how to do that using Java 25. SOLUTION Using the IO library and the static methods, […]
Hello World in Java 25
Hello World in Java 25 problem A classic introduction program when learning or testing out a new language. In this case Java version 25. Let’s see a simple Hello World program. SOLUTION We will write a program that when it runs, simply outputs a “Hello World” message on the screen/ console. Main.java void main() { […]