// PL1/simple.cpp // Example of program using dynamic memory allocation // Niels Walet, last updated 04/12/2019 #include int main() { int number_of_values; std::cout<<"Enter the number of values to enter: "; std::cin>>number_of_values; std::cout<<"You would like to enter "<>values[i]; } std::cout<<"Here are your values: "; for(int i{};i