#include /* For this task, read in a number n on cin and print out the first n square numbers each in their own line */ int main(int argc, char **argv) { int n; std::cout<< "Enter a number:"<>n; std::cout<