Advertisement
Lukasz_Miskiewicz

Zadanie 1

Mar 24th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. #include <cstdlib>
  4. using namespace std;
  5.  
  6.  
  7. void autor_name()
  8. {
  9. cout<<"Lukasz Miskiewicz"<<endl;
  10. }
  11. void autor_data()
  12. {
  13. cout<<"19 marca 2020"<<endl;
  14. }
  15.  
  16. void autor_clas()
  17. {
  18. cout<<"Klasa 3aTIg2"<<endl;
  19. }
  20.  
  21.  
  22. int main()
  23. {
  24. autor_name();
  25. autor_data();
  26. autor_clas();
  27. return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement