Hi
I am having a list of number in an array.
I need a code to add the numbers that ends with 5.
for example, I am having the following numbers in an array.
Let it be
1,15,5,25,14,10
The result of the above example is 45 .
Here I am adding 15 + 5 + 25 since these numbers are end with 5.
Thanks in advance.