Advertisement
PiotrSzewczyk

Zad 1

Mar 24th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. #include <iostream>
  2. #include <string.h>
  3.  
  4. using namespace std;
  5. void autor(string imienazwisko, string klasa, string data)
  6. {
  7.     cout<<"Imie i nazwisko: "<<imienazwisko<<endl;
  8.     cout<<"Klasa: " <<klasa<<endl;
  9.     cout<<"Data utworzenia programu: "<<data<<endl;
  10. }
  11. int main()
  12. {
  13.     string a, b, c;
  14.     cout<<"Podaj imie i nazwisko (bez spacji)"<<endl;
  15.     cin>>a;
  16.     cout<<"Podaj klase, z ktorej jestes"<<endl;
  17.     cin>>b;
  18.     cout<<"Podaj date utworzenia programu"<<endl;
  19.     cin>>c;
  20.     autor(a, b, c);
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement