Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class hellorepeat {
- public static void main(String[] args) {
- Scanner scan = new Scanner(System.in);
- String word;
- int total;
- System.out.print("Enter a word: ");
- word = scan.nextLine();
- total = word.length();
- while (total > 0){
- System.out.println(word);
- total = total-1;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment