1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课内】5.循环结构2/7-1 循环-sum.c

34 lines
564 B
C
Raw Normal View History

2024-10-30 02:26:56 +00:00
#include <stdio.h>
int main() {
int n, sum_pos = 0, sum_neg = 0;
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
int x;
scanf("%d", &x);
if (x > 0) {
sum_pos += x;
} else if (x < 0) {
sum_neg += x;
} // when x == 0, do nothing
}
if (sum_pos == 0) {
printf("no positive number ");
} else {
printf("%d ", sum_pos);
}
if (sum_neg == 0) {
printf("no negative number\n");
} else {
printf("%d\n", sum_neg);
}
return 0;
}