Advertisement
Cassimus

main

May 14th, 2025
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include "Bee.h"
  2. #include "Queen.h"
  3.  
  4. int main(int argc, char const *argv[])
  5. {
  6. Bee bee{std::string{"Pszczoła"},""};
  7. Queen queen{"Krolowa","znosi jaja"};
  8.  
  9. Bee bees[]{bee, queen};
  10.  
  11. for(auto insect: bees)
  12. {
  13.  
  14. }
  15.  
  16.  
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement