Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <cstdlib>
  4.  
  5. using namespace std;
  6.  
  7. struct Student
  8. {
  9. string imie;
  10. string nazwisko;
  11. int numer;
  12. };
  13.  
  14. void WczytajStudentow(){}
  15.  
  16. void WyswietlStudenta(){}
  17.  
  18. void WyswietlTablice(){}
  19.  
  20. void EdytujTablice(){}
  21.  
  22. void ZapiszStudentow(){}
  23.  
  24. int main()
  25. {
  26. Student a;
  27. a.dodaj_student();
  28. return 0;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement