Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- #include <string>
- #include <algorithm>
- #include <vector>
- using namespace std;
- class Student
- {
- public:
- Student();
- void wypisz(){
- cout << "Imie:" << imie;
- cout << "Nazwisko" << nazwisko << endl;
- cout << "Numer indeksu" << numer_indeksu << endl;
- cout << "Numer_zarejestrowanej_pracy_dyplomowej" << numer_zarejestrowanej_pracy_dyplomowej << endl;
- cout << "Srednia ze studiow" << srednia_ze_studiow << endl;
- }
- void wpisz(string i, string n, int n1, int n2, float s){
- imie = i;
- nazwisko = n;
- numer_indeksu = n1;
- numer_zarejestrowanej_pracy_dyplomowej = n2;
- srednia_ze_studiow = s;
- }
- private:
- string imie, nazwisko;
- int numer_indeksu, numer_zarejestrowanej_pracy_dyplomowej;
- float srednia_ze_studiow;
- };
- void zad7(){
- cout << "Odczytywanie pliku..." << endl;
- int n;
- cout << "Podaj n :";
- cin >> n;
- string imie, nazwisko;
- int numer_indeksu, numer_zarejestrowanej_pracy_dyplomowej;
- float srednia_ze_studiow;
- std::vector<Student*> studenty;
- for (int i = 0; i < n; i++)
- {
- Student *student = new Student();
- studenty.push_back(student);
- //Student * studenciak;
- //studenciak = studenciaki[i];
- //studenciaki.push_back(studenciak);
- cin >> imie >> nazwisko >> numer_indeksu >> numer_zarejestrowanej_pracy_dyplomowej >> srednia_ze_studiow;
- // studenciak->wpisz(imie, nazwisko, numer_indeksu, numer_zarejestrowanej_pracy_dyplomowej, srednia_ze_studiow);
- student->wpisz(imie, nazwisko, numer_indeksu, numer_zarejestrowanej_pracy_dyplomowej, srednia_ze_studiow);
- student->wypisz();
- }
- }
- int main(){
- zad7();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement