Advertisement
Guest User

halko

a guest
Jan 20th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. struct silnik
  5. {
  6. float pojemnosc_skokowa;
  7. float nm;
  8. float ilosc_koni;
  9. };
  10.  
  11. struct model
  12. {
  13. int rocznik;
  14. std::string producent;
  15. std::string nazwa_modelu;
  16. };
  17.  
  18. struct samochod
  19. {
  20. struct model Dane;
  21. struct silnik Parametry;
  22. };
  23.  
  24. struct Samochody
  25. {
  26. struct samochod ilosc[50];
  27. };
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. int main()
  35. {
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement