Advertisement
hamaXD

Lab 2 : 2 main

Feb 7th, 2018
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main{
  4.     public static void main(String[] args){
  5.         String word;
  6.         Scanner in = new Scanner(System.in);
  7.         word = in.nextLine();
  8.         System.out.println("INPUT IS: " + word);
  9.         Aeiou test = new Aeiou();
  10.         test.setWord(word);
  11.         test.countVowel();
  12.    
  13.  
  14.  
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement