Advertisement
Shavit

P. 20 Ex. 9.17

Dec 27th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. // Shavit Borisov
  2. // HW
  3.  
  4. import java.util.Scanner;
  5.  
  6. public class WebsiteCompanyName {
  7.  
  8.     public static void main(String[] args)
  9.    
  10.     {
  11.         Scanner in = new Scanner (System.in);
  12.        
  13.         String input;
  14.        
  15.         System.out.print("Enter a website url: ");
  16.         input = in.nextLine();
  17.        
  18.         System.out.printf("The company's name is %s", input.substring(4, (input.length() - 4)));
  19.        
  20.         in.close();
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement