Advertisement
PiotrJurek

Zad1

Mar 29th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void AUTOR(string imie, string nazwisko, string klasa, string data)
  6. {
  7. cout << imie << " " << nazwisko << endl;
  8. cout << klasa << endl;
  9. cout << data << endl;
  10. }
  11.  
  12. int main()
  13. {
  14. AUTOR("Piotr", "Jurek", "3bTI", "21.03.2020");
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement