Michal_Pilarski

zad1

Mar 19th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.44 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void autor()
  6. {
  7.    cout<<"Michal Pilarski"<<endl;
  8.    cout<<"3cTI"<<endl;
  9.    cout<<"17.03.2020"<<endl;
  10. }
  11. void autor2()
  12. {
  13.    cout<<"Michal Bilski"<<endl;
  14.    cout<<"3cTI"<<endl;
  15.    cout<<"17.03.2020"<<endl;
  16. }
  17. void autor3()
  18. {
  19.    cout<<"Michal Walczak"<<endl;
  20.    cout<<"3cTI"<<endl;
  21.    cout<<"17.03.2020"<<endl;
  22. }
  23.  
  24. int main()
  25. {
  26.     autor();
  27.     autor2();
  28.     autor3();
  29.     return 0;
  30. }
Add Comment
Please, Sign In to add comment