Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- /*
- Seba Daniel Alex -> mistrz
- */
- using namespace std;
- class Student
- {
- private:
- int wiek;
- string imie;
- string nazwisko;
- public:
- void pokaz(){
- cout << endl << "imei:" << imie;
- cout << endl << "nazw:" << nazwisko;
- cout << endl << "wiek:" << wiek;
- }
- void setStudent(string imie, string nazwisko, int wiek){
- if (imie.length() == 0) throw "Nie podano imienia";
- else if (nazwisko.length() == 0) throw "Nie podano nazwiska";
- else if (wiek <= 0)throw "zly wiek";// to jest źle
- this->imie = imie;
- this->nazwisko = nazwisko;
- this->wiek = wiek;
- }
- };
- int main(){
- try{
- Student studt;
- studt.setStudent("Ziomeczek", "psikuta", 12);
- studt.pokaz();
- Student student;
- student.setStudent("Arek", "To", "chuj");
- }
- catch (char *msg){ cout << msg; }
- catch (...){}
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement