Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. int *input;
  2. input = new int[N];
  3.  
  4. for (int count=0; count<N; ++count)
  5. {
  6.     std::cout << phrase << (1 + count) << ":";
  7.     std::cin >> input[count];
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement