answersLogoWhite

0

In order to write a program, we have to have an algorithm. In this case, we can use two temporary variables to store up the sums: evenSum = 0 oddSum = 0 for i = 0 to array.size do: if isEven(i): evenSum = evenSum + array[i] else: oddSum = oddSum + array[i]

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

Shell program for gcd of three given numbers?

write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? write a shell program for finding out gcd of three given numbers? check bellow link http://bashscript.blogspot.com/2009/08/gcd-of-more-than-two-numbers.html


Write a Shell program to find the smallest number from a set of numbers?

k


Shell program to generate the prime numbers betwee 1 to 50?

2,3,5,7,9,11,13,17,19,23,29,31,37,39,41,43,47,49


Shell program to find the smallest digit of a given number?

syntax error


Write a shell program to check and display 10 leap years?

dono


Unix script to calculate average of n numbers given by user?

You really don't want to do this in a shell script - scripting languages in Unix typically do not handle or work with floating values, only integers. A better way would be to write a program to do this that works under Unix, such as a 'C" program. See the related link for an example


Write a Shell program to find the sum of cube of individual digits of a number?

no thanks


Shell script to find LCM of the given two numbers?

Shell program to find LCM and hcf of two no.s tput clear echo "Enter first no" read a echo "Enter 2nd no" read b p= 'expr $a \* $b' while [$b -ne 0] do r= 'expr $a % $b' a=$b b=$r done LCM = 'expr $p / $a' echo "LCM = $LCM" echo "Hcf = $a"


Shell script to find amstrong numbers within a given range?

Check below link


Write a shell program to delete all the files in the current directory?

in winxp del *.* /Q /S


Write a program in shell script to display odd number from 0 to 100?

seq 1 2 99


Write a shell program called whos to display a sorted list of the logged in usersJust display the user names and no other information?

The 'users' command should do that; you don't need to write a shell script to get that information in that format.