fork download
  1. #include <iostream>
  2. #include <algorithm>
  3. #include <cctype>
  4. #include <string>
  5. #include <vector>
  6.  
  7.  
  8. using namespace std;
  9.  
  10. wyswietl(vector <string> &tab)
  11. {
  12. cout<<"Zawartosc vectora :"<<endl;
  13. for(int i=0; i<tab.size(); i++)
  14. {
  15. cout<<tab[i]<<endl;
  16. }
  17. }
  18.  
  19. wczytaj(int &ile, vector <string> &tab)
  20. {
  21. int c=0;
  22. string tekst;
  23. cout<< "Podaj "<<ile<<" napisow oddzielonych enterem"<<endl;
  24. for(int i=-1; i<ile; i++)
  25. {
  26. getline(cin, tekst);
  27. for (int j=0; j<tekst.length(); j++)
  28. {
  29. if ( isalpha(tekst[j]) != 0)
  30. {
  31. c++;
  32. }
  33. }
  34. if(c==tekst.length())
  35. {
  36. tab.push_back(tekst);
  37. }
  38.  
  39. }
  40. }
  41. int main()
  42. {
  43. int ile ;
  44. vector < string > tab;
  45. cout<<"Ile napisow chcesz wczytac?"<<endl;
  46. cin>>ile;
  47. wczytaj(ile, tab);
  48. wyswietl(tab);
  49.  
  50. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:10:30: error: ISO C++ forbids declaration of 'wyswietl' with no type [-fpermissive]
 wyswietl(vector <string> &tab)
                              ^
prog.cpp:19:39: error: ISO C++ forbids declaration of 'wczytaj' with no type [-fpermissive]
 wczytaj(int &ile, vector <string> &tab)
                                       ^
stdout
Standard output is empty