See the related question for the answer.
Chat with our AI personalities
9338
Imaginary numbers are only ever used when you are using the square roots of negative numbers. The square root of -1 is i. You may find imaginary numbers when you are finding roots of equations.
If you must use all digits precisely once then the answer is: 8642, 8624, 8462
Assuming the question requires the biggest number formed using the given digits - rather than applying mathematical operations to them - the answer is 76430.
arg_cnt=$# arg_list=$* biggest=$1 if [ $arg_cnt -eq 0 ]; then echo "$RF there should be minimum 1 argument" exit 1 fi for each_arg in $arg_list do if [ $each_arg -gt $biggest ]; then biggest=$each_arg fi done echo " Biggest number is : $biggest \n" exit 0