MarcinKrol

Zad1

Mar 24th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. // Zad1
  4.  
  5. using namespace std;
  6.  
  7. void autor ()
  8. {
  9. cout<<"Marcin Krol"<< endl;
  10. cout<<"3CTi"<< endl;
  11. cout<<"17.03.2020"<< endl;
  12. cout << endl;
  13.  
  14. }void autor1 ()
  15. {
  16. cout<<"Wiktor Malisak "<< endl;
  17. cout<<"3CTi"<< endl;
  18. cout<<"17.03.2020"<< endl;
  19. cout << endl;
  20.  
  21. }void autor2 ()
  22. {
  23. cout<<"Marcin Molenda"<< endl;
  24. cout<<"3CTi"<< endl;
  25. cout<<"17.03.2020"<< endl;
  26. cout << endl;
  27.  
  28. }
  29.  
  30. int main()
  31. {
  32. autor();
  33. autor1();
  34. autor2();
  35.  
  36. return 0;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment