c语言计算10个数中正数个数,正数的和,负数个数,负数的和
时间: 2023-05-13 15:07:37 浏览: 98
您好,以下是您所需的C语言代码:
```c
#include <stdio.h>
int main() {
int nums[10];
int positive_count = 0, negative_count = 0;
int positive_sum = 0, negative_sum = 0;
printf("请输入10个整数:\n");
for (int i = 0; i < 10; i++) {
scanf("%d", &nums[i]);
if (nums[i] > 0) {
positive_count++;
positive_sum += nums[i];
} else if (nums[i] < 0) {
negative_count++;
negative_sum += nums[i];
}
}
printf("正数个数:%d,正数和:%d\n", positive_count, positive_sum);
printf("负数个数:%d,负数和:%d\n", negative_count, negative_sum);
return 0;
}
```
希望能够帮到您!
相关问题
c语言统计10个数中正数个数,正数的和,负数个数,负数的和
这个问题可以用一个简单的循环来解决。以下是代码示例:
```c
#include <stdio.h>
int main() {
int num, positive_count = 0, negative_count = 0, positive_sum = 0, negative_sum = 0;
for (int i = 0; i < 10; i++) {
printf("请输入第 %d 个数:", i + 1);
scanf("%d", &num);
if (num > 0) {
positive_count++;
positive_sum += num;
} else if (num < 0) {
negative_count++;
negative_sum += num;
}
}
printf("正数个数:%d,正数和:%d\n", positive_count, positive_sum);
printf("负数个数:%d,负数和:%d\n", negative_count, negative_sum);
return 0;
}
```
这个程序会提示用户输入10个数,然后统计正数个数、正数和、负数个数和负数和,并输出结果。
c语言统计10个数中正数和负数的个数
可以使用一个循环来遍历这10个数,然后使用if语句判断每个数是正数还是负数,最后分别统计正数和负数的个数即可。以下是示例代码:
```c
#include <stdio.h>
int main() {
int nums[10] = {1, -2, 3, -4, 5, -6, 7, -8, 9, -10};
int positive_count = 0, negative_count = 0;
int i;
for (i = 0; i < 10; i++) {
if (nums[i] > 0) {
positive_count++;
} else if (nums[i] < 0) {
negative_count++;
}
}
printf("正数个数:%d,负数个数:%d\n", positive_count, negative_count);
return 0;
}
```
输出结果为:
```
正数个数:5,负数个数:5
```
阅读全文