Zehdari

Untitled

Apr 1st, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class hellorepeat {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. Scanner scan = new Scanner(System.in);
  8.  
  9. String word;
  10. int total;
  11.  
  12. System.out.print("Enter a word: ");
  13. word = scan.nextLine();
  14.  
  15. total = word.length();
  16.  
  17. while (total > 0){
  18. System.out.println(word);
  19. total = total-1;
  20. }
  21.  
  22. }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment