알고리즘 4 - Sum of positive

tamagoyakii·2021년 10월 4일
1

알고리즘

목록 보기
4/89

Q.

You get an array of numbers, return the sum of all of the positives ones.

Example [1,-4,7,12] => 1 + 7 + 12 = 20

Note: if there is nothing to sum, the sum is default to 0.

A)

#include <stddef.h>

int positive_sum(const int *values, size_t count){
  int ret = 0;
  for (int i = 0;i < count;i++){
    if (values[i] > 0)
      ret += values[i];
  }
  return ret;
};

0개의 댓글