Guest User

Untitled

a guest
Apr 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. class apples {
  4.     public static void main(String args[]){
  5.        
  6.         Scanner input = new Scanner(System.in);
  7.         tuna tunaObject = new tuna();
  8.         System.out.println("Enter Name of first gf here: ");
  9.         String temp = input.nextLine();
  10.         tunaObject.setName(temp);
  11.         tunaObject.saying();
  12.  
  13.        
  14.     }      
  15. }
Add Comment
Please, Sign In to add comment