Advertisement
Guest User

ReceipSearch.java

a guest
Oct 10th, 2020 (edited)
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. import java.io.File;
  2. import java.util.ArrayList;
  3. import java.util.Scanner;
  4.  
  5. public class RecipeSearch {
  6.  
  7.     public static void main(String[] args) {
  8.         Scanner scanner = new Scanner(System.in);
  9.        
  10.         System.out.print("File to read: ");
  11.         String fileToRead = scanner.nextLine();
  12.         UserInterface newfile = new UserInterface(fileToRead, scanner);
  13.        
  14.         newfile.start();            
  15.        
  16.     }
  17.  
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement