You are viewing a single comment's thread. Return to all comments →
#!/bin/bash read x; read y; soma=`expr $x + $y`; echo $soma; diferenca=`expr $x - $y`; echo $diferenca; produto=`expr $x \* $y`; echo $produto; divisao=`expr $x / $y`; echo $divisao;
The World of Numbers
You are viewing a single comment's thread. Return to all comments →