展开全部
#include <iostream>
using namespace std;
int main()
{
int count = 0;
int num;
cout<<"输入一组数,以Ctrl+Z结束"<<endl;
while(cin>>num)
{
if(num<0)
{
++count;
}
}
cout<<"负数有"<<count<<"个"<<endl;
return 0;
}
using namespace std;
int main()
{
int count = 0;
int num;
cout<<"输入一组数,以Ctrl+Z结束"<<endl;
while(cin>>num)
{
if(num<0)
{
++count;
}
}
cout<<"负数有"<<count<<"个"<<endl;
return 0;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
class qq
{
private:
int* a;
public:
int ge;
in
void qq(int *x)
{
a=x;
ge=0;
}
int geshu(void)
{
for(i=0;i<=sizaof(a);i++)
{
if ((*(a+i))<0)
{
ge+=1
}
}
}
}
main()
{
1.获得数组s,根据你的需要填
int *ps=s;
qq t(ps);
t.geshu()
t.ge=?就是你需要的
}
可以改进一下,可能有个地方错了,你自己改吧
{
private:
int* a;
public:
int ge;
in
void qq(int *x)
{
a=x;
ge=0;
}
int geshu(void)
{
for(i=0;i<=sizaof(a);i++)
{
if ((*(a+i))<0)
{
ge+=1
}
}
}
}
main()
{
1.获得数组s,根据你的需要填
int *ps=s;
qq t(ps);
t.geshu()
t.ge=?就是你需要的
}
可以改进一下,可能有个地方错了,你自己改吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#define INPUT_NUMBER 5//it can appoint the total input numbers #include <stdio.h>
int main()
{
int a[INPUT_NUMBER];
int i;
int total;
printf("please input %d numbers!\n", INPUT_NUMBER);
for(i=0;i<INPUT_NUMBER;i++)
{
scanf("%d",a+i);// also here you can judge it is negative or not
}
total = 0;
for(i=0;i<INPUT_NUMBER;i++)
{
if(a[i]<0){
total += 1;
}
}
printf("you just input %d negative numbers!\n", total);
return 0;
}
int main()
{
int a[INPUT_NUMBER];
int i;
int total;
printf("please input %d numbers!\n", INPUT_NUMBER);
for(i=0;i<INPUT_NUMBER;i++)
{
scanf("%d",a+i);// also here you can judge it is negative or not
}
total = 0;
for(i=0;i<INPUT_NUMBER;i++)
{
if(a[i]<0){
total += 1;
}
}
printf("you just input %d negative numbers!\n", total);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询