CHRIST MCA 2009-2012
Would you like to react to this message? Create an account in a few clicks or log in to continue.

5. WASS to print the following series – 1 3 2 4 3 5 4 ….100

Go down

5. WASS to print the following series – 1 3 2 4 3 5 4 ….100 Empty 5. WASS to print the following series – 1 3 2 4 3 5 4 ….100

Post  nibedita Wed Jul 21, 2010 9:10 pm

5. WASS to print the following series – 1 3 2 4 3 5 4 ….100
clear
echo "The series is: "
s=1
while [ $s -lt 100 ]
do
s=`expr $s + 2`
echo " $s "
s=`expr $s - 1`
echo " $s "
done

nibedita

Posts : 3
Join date : 2010-07-21

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum