Advertisement
helenrut

Untitled

Sep 23rd, 2015
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5. const int FYLKJASTAERD = 100;
  6. int main()
  7. {
  8. int FjoldiOrd;
  9. string Nofn[FYLKJASTAERD];
  10. for (int i = 0; i < FYLKJASTAERD; i++){
  11. Nofn[i] = "";
  12. }
  13.  
  14. cin >> FjoldiOrd;
  15.  
  16. for(int i = 0; i < FjoldiOrd; i++){
  17. cin >> Nofn[i];
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement