quick flashcards
How do you import the Scanner for use in Java?
import java.util.Scanner
How To make a scanner object & input a string.
Scanner input = new Scanner(System.in);
String name = input.nextLine()
How to write an object to call a method?
className CreateObject = new className() nameObject.simpleMessage();
How to write a method that doesn’t return any data?
public void methodName(DataType name)
What is a while loop for?
Allows you to execute code mutliple times using a small amount of code such as increment operators.
while (variable value) {code}
What are the 3 most comman java statements, and what are they used for?
if, switch, else,
What other code is used with the switch statement?
case, default, break
What are the 3 most comman java loops, and what are they used for?
while, for, do