Maksud3

part3

Nov 26th, 2020
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. package com.epam.rd.java.basic.practice1;
  2.  
  3. public class Part3 {
  4.  
  5.     public static void main(String[] args) {
  6.         String space = "";
  7.         for (String arg : args) {
  8.             try {
  9.                 System.out.print(space + arg);
  10.                 space = " ";
  11.             } catch (NumberFormatException ignored) {
  12.             }
  13.         }
  14.         System.out.println();
  15.     }
  16. }
  17.  
Add Comment
Please, Sign In to add comment