import java.util.Scanner;
public class apples{
public static void main(String args[]) {
Scanner input = new Scanner (System.in);
Coffee CoffeeObject = new Coffee ();
System.out.println("Enter your name here: ");
String name = input.nextLine (); (for string)
CoffeeObject.simpleMessage(name); (name parameter)
}}
import java.util.Scanner;
public class Coffee {
public void simpleMessage(String name) { (Method)
System.out.println("Hello " + name);
}
}
Comments
Post a Comment