We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0212566 commit 2e4d874Copy full SHA for 2e4d874
arithmeticOperations.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash -x
2
+a=1
3
+b=2
4
+c=3
5
+echo "$(($a+$b*$c))"
6
+echo "$(($a%$b+$c))"
7
+echo "$(($c+$a/$b))"
8
+echo "$(($a*$b+$c))"
0 commit comments