learning-java-2825378
learning-java-2825378 copied to clipboard
This repository is for the Linkedin Learning course: Learning Java
while loop exercise
h
package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { String question = "What is the largest planet in our solar system?"; String choiceOne = "Earth";...
package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { String question = "What is the largest planet in our solar system?"; String choiceOne = "Earth";...
package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner (System.in); boolean isOnrepeat =true; while (isOnrepeat) { System.out.println( "Playing current song");...
package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { System.out.println("Pick a number between 1 and 10 "); Scanner scanner = new Scanner(System.in); int inputtedNum =scanner.nextInt();...
package com.company; import java.util.Scanner; public class Main { public static void main (String[] args) { double studentGPA =3.37; String studentFirstName = "EB"; String studentLastName = "Erdene"; System.out.println(studentFirstName + " "...