CPS 100E Random Quiz 1 Fall 1995 due: 9/7/95 Name: ______________________ Honor Code Acknowledgement: _______________________ Problem 1: Write the missing C++ function NumNum. This function should read in a list of integers using cin, and calculate the number of positive and negative integers (0 is considered positive). main() { int negnum, posnum; NumNum(negnum, posnum); cout << "Out of " << negnum+posnum << " numbers, there are " << negnum << " negative numbers" << endl << "and " << posnum << "." << endl; }