编程对用户输入一个含有10个整数的一维数组,分别计算数组中所有正数和所有负数的和。
1个回答
展开全部
void main(){
int a[10];
int np=0,nn=0;
for (int i=0;i<10;i++){
scanf("%d",&a[i]);
if (a[i]>0) np+=a[i];
else if (a[i]<0) nn+=a[i];
}
printf("the sum of positives is %d, the sum of negatives is %d\n",np,nn);
}
int a[10];
int np=0,nn=0;
for (int i=0;i<10;i++){
scanf("%d",&a[i]);
if (a[i]>0) np+=a[i];
else if (a[i]<0) nn+=a[i];
}
printf("the sum of positives is %d, the sum of negatives is %d\n",np,nn);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询