How to pass values to Sololearn's Code Playground?! (Never mind an error) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to pass values to Sololearn's Code Playground?! (Never mind an error)

I am making a program that prompts the user then receives an input then prompts the user again then receives another input. Like that: Scanner in = new Scanner(System.in); System.out.print("Enter a number: "); if (in.hasNextDouble()) { num1 = in.nextDouble(); } System.out.println(); System.out.print("Enter another number: "); if (in.hasNextDouble()) { num2 = in.nextDouble(); } System.out.println(); When I try to give two values in separate lines as Sololearn's code playground asks. It assigns the first variable successfully but not the other variable. The question is: How to pass values to Sololearn's code playground?!

19th Jan 2017, 3:38 PM
Omar Abdelhafiz
Omar Abdelhafiz - avatar
1 Answer
+ 1
never mind in my code i didn't assign a value to num2
19th Jan 2017, 3:37 PM
Omar Abdelhafiz
Omar Abdelhafiz - avatar