编辑代码

#JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
#!bin/bash
PATH=/root:$PATH
export PATH
echo -e "Hello World! \a\n"
read -p"input num1:" num1
read -p"input num2:" num2
read -p"input num3:" num3
max=$num1
if((num2>max))
then
 max=$num2
 fi
 if((num3>max))
 then
 max=$num3
 fi
 echo "max=$max"
 exit 0