Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

program to calculate and return the sum of distance between the adjacent numbers in an array of positive integer java

def findTotalSum(n,numbers,pos):
    total = 0
    for i in range(pos-1,n-1):
        total+= abs(numbers[i]-numbers[i+1])
    return total
n = int(input())
numbers = list(map(int, input().split()))
pos = int(input())
print(findTotalSum(n,numbers,pos))
Source by prepinsta.com #
 
PREVIOUS NEXT
Tagged: #program #calculate #return #sum #distance #adjacent #numbers #array #positive #integer #java
ADD COMMENT
Topic
Name
5+9 =