The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
adding a 6 digit number retaining 0s on the left kanchan_cp Shell Programming and Scripting 8 03-08-2007 09:58 AM
Extracting 10 digit number from txt files c19h28O2 Shell Programming and Scripting 9 08-07-2006 06:06 PM
restrain the number of digits of a PID mlefebvr UNIX for Advanced & Expert Users 1 05-27-2002 09:33 AM
Urgent!! How to write a shell program to execute command to access internet? firebirdonfire UNIX for Dummies Questions & Answers 2 04-26-2001 11:16 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 10-29-2006
banta banta is offline
Registered User
  
 

Join Date: Oct 2006
Posts: 1
Write a shell program to find the sum of alternate digits in a given 5-digit number

Hi Can any one please post the answer for the above program..................

Last edited by banta; 10-29-2006 at 05:28 PM.. Reason: Wrong question
  #2 (permalink)  
Old 10-29-2006
vgersh99's Avatar
vgersh99 vgersh99 is online now Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,119
banta.sh 28462

banta.sh:
Code:
#!/bin/ksh

a="${1}"

typeset -i i=1

while (( i <= 5 ))
do
  ((num=$(echo "${a}" | cut -c "${i}") ))
  if (( i == 1 )); then
     printf "$num"
  else
     printf "+$num"
  fi
  ((sum=sum + num))
  ((i=i+2))
done

printf "=${sum}\n"
  #3 (permalink)  
Old 10-29-2006
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,509
Python alternative

Code:
#!/usr/bin/python
a = 12345
b = list(str(a))
print sum( map(int,b[::2]) )
output:
Code:
9
  #4 (permalink)  
Old 10-30-2006
rajnikanth.1912 rajnikanth.1912 is offline
Registered User
  
 

Join Date: Oct 2006
Posts: 5
You need to initialise the variables num and sum

#!/bin/ksh

a=12346
b=`expr length $a`
echo " length : $b"
typeset -i i=1
num=0
sum=0
while (( i <= $b ))
do
((num=$(echo "${a}" | cut -c "${i}") ))
if (( i == 1 )); then
printf "$num"
else
printf "+$num"
fi
((sum=sum + num))
((i=i+2))
done
printf "=${sum}\n"
~

Answer
-------
length : 5
1+3+6=10
  #5 (permalink)  
Old 10-30-2006
blowtorch's Avatar
blowtorch blowtorch is offline Forum Advisor  
Supporter
  
 

Join Date: Dec 2004
Location: Singapore
Posts: 2,350
Er... obvious example of homework? Thread closed.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 08:19 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0