A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

#include <stdio.h>
#define Count 5
void fun(int *zs,int *fs,int *l,float aa[])
{
    int i;
    for(i=0;i<Count;i++)
    {
        if(aa[i]>0)
            (*zs)++;
        if(aa[i]<0)
            (*fs)++;
        if(aa[i]==0)
            (*l)++;
    }
}

int main()
{
    float num[Count];
    int i,czs,cfs,cl;
    czs=cfs=cl=0;
    printf( "\nPlease enter %d float numbers :\n", Count);
    for(i=0;i<Count;i++)
        scanf("%f",&num[i]);
    fun(&czs,&cfs,&cl,num);
    printf("\n正数:%d  ,负数:%d  ,零:%d  \n",czs,cfs,cl);
   
   
    return 0;
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马