Write a function total_number that prints the total number of given parameters. The output line should look like this: The total number of parameters is <there is the total number>
Functions and arguments
Output the total number
Report a typo
Sample Input 1:
2 5 10 100 55Sample Output 1:
The total number of parameters is 5Write a program in Shell
#!/usr/bin/env bash
total_number() {
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.