Advertisement
vencinachev

JavaLinuxArguments

Mar 17th, 2021
696
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.71 KB | None | 0 0
  1. class RepeatText {
  2.    public static void main(String[] args){
  3.        if (args.length == 1){
  4.            System.out.println(args[0]);
  5.            return;
  6.        }
  7.        else if (args.length != 2){
  8.            System.out.println("Invalid arguments");
  9.            return;
  10.        }
  11.        
  12.        try {
  13.            String text = args[0];
  14.            int count = Integer.parseInt(args[1]);
  15.            if (count < 0){
  16.               System.out.println("You have to type positive number!");
  17.               return;
  18.            }
  19.            
  20.            for (int i = 0; i < count; i++){
  21.              System.out.println(text);
  22.            }
  23.        } catch (Exception ex) {
  24.              System.out.println("You have to type number!");
  25.        }
  26.    }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement