c++ lab sheet kuppiya- 6
24. Write a program that inputs five numbers and determines and prints the number of negative numbers input, the number of positive numbers input and the number of zeros input. #include <iostream.h> int main() { int a,b,c,d,e,tn,tz,tp; tn=0; tz=0; tp=0; cout<<“Enter Number: “; cin>>a; cout<<“Enter Number: “; cin>>b; cout<<“Enter Number: “; cin>>c; cout<<“Enter Number: “;[…]