adding a condition

This commit is contained in:
MSilva95 2022-08-04 18:32:20 +01:00 committed by GitHub
parent 4b8e804ef9
commit af4cd45c3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -4,8 +4,9 @@
Write a program that concatenates two arguments and prints the result:
- If the number of arguments is not 2, return newline.
- If the two arguments are empty return newline.
- If the number of arguments is not 2, return a newline.
- If only one of the arguments is empty, print the other.
- If the two arguments are empty return a newline.
### Usage