Creative Minds
This site is for the creative students
Pages
Home
JAVA
JDBC
CProgramming
J2EE
ShellScript
Servlet
JSP
Thursday, 2 April 2015
write a shell script program to generate multiplication table
write a shell script program to generate multiplication table
clear
echo "which number to generate multiplication table"
read number
i=1
while [ $i -le 10 ]
do
echo " $number * $i =`expr $number \* $i ` "
i=`expr $i + 1`
done
output
2 comments:
Unknown
25 August 2020 at 01:37
can u explain code
Reply
Delete
Replies
Reply
Unknown
11 December 2020 at 06:48
Can you also explain the code
Thank you!!
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
can u explain code
ReplyDeleteCan you also explain the code
ReplyDeleteThank you!!