Guest User

Untitled

a guest
Feb 10th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.06 KB | None | 0 0
  1. #include "Uczen.h"
  2. #include "Szkoła.h"
  3. #include<iostream>
  4. #include<fstream>
  5.  
  6.  
  7. Uczen::Uczen(std::string nss , float oo , int iuu,std::string imieu, std::string nazwiskou, std::string miejscowscu, int peselu, int roku, float ocenau, float sredniau) :Szkola(nss, oo, iuu)
  8. {
  9.     imie=imieu;
  10.     nazwisko=nazwiskou;
  11.     miejscowsc=miejscowscu;
  12.     pesel=peselu;
  13.     rok_urodzenia=roku;
  14.     ocena=ocenau;
  15.     srednia = sredniau;
  16.  
  17. }
  18.  
  19. Uczen::~Uczen()
  20. {
  21. }
  22. void Uczen::dodawanie_ucznia()
  23. {
  24.     std::fstream plik;
  25.     plik.open(Szkola::fnazwa_szkoly(), std::ios::out);
  26.     if (plik.good())
  27.     {
  28.         plik << std::endl;
  29.         std::cout << "podaj imie ucznia: ";
  30.         std::cin >> imie;
  31.         plik << "Imie ucznia: " << imie << std::endl;
  32.         std::cout << "podaj nazwisko ucznia: ";
  33.         std::cin >> nazwisko;
  34.         plik << "Nazwisko ucznia: " << nazwisko << std::endl;
  35.         std::cout << "podaj pesel ucznia ";
  36.         std::cin >> pesel;
  37.         plik << "Pesel ucznia: " << pesel << std::endl;
  38.     }
  39.     else
  40.     {
  41.         std::cout << "error w uczniu nie da sie dodac do pliku jego specyfikacji!!!!!!!!!!!!!!!!!!!!  " << std::endl;
  42.     }
  43.  
  44.  
  45. }
Advertisement
Add Comment
Please, Sign In to add comment