码迷,mamicode.com
首页 > 其他好文 > 详细

60.编程统计数组a中正数、0、负数的个数

时间:2014-08-11 21:05:12      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   div   log   

#include<iostream>
using namespace std;

int main()
{
    int x=0,y=0,z=0;
    int a[10];

    cout<<"please input 10 numbers:"<<endl;
    for(int i=0;i<10;i++)
    {
        cin>>a[i];
    }

    for(int j=0;j<10;j++)
    {
        if(a[j]==0)
        {
            x++;
        }
    }

    for(int m=0;m<10;m++)
    {
        if(a[m]>0)
        {
            y++;
        }
    }

    for(int n=0;n<10;n++)
    {
        if(a[n]<0)
        {
            z++;
        }
    }
    cout<<"数组中有"<<x<<"个零"<<endl;
    cout<<"数组中有"<<y<<"个整数"<<endl;
    cout<<"数组中有"<<z<<"个负数"<<endl;

    return 0;
}

 

60.编程统计数组a中正数、0、负数的个数,布布扣,bubuko.com

60.编程统计数组a中正数、0、负数的个数

标签:style   blog   color   os   io   for   div   log   

原文地址:http://www.cnblogs.com/jixiaowu/p/3905506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!