- 1
Write a program to enter any 20 numbers, which includes negative numbers also
Your program shall terminate and come out of the program, once the user had entered the number Zero. Your program should display how many Positive and Negative numbers the user had entered after encountering Zero. This program is to be written using functions.
2 Respostas
+ 2
PLEASE SEND YOUR CODE!
0
Abhijeet Minz
"Program shall terminate after entering 0" so how you will count positive and negative number after encountering 0?
I think there should be before encountering 0.
Hint : You can push elements in a global array and stop pushing elements when user enter 0.
Now you can count using that array.