Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. int populacja [80]
  2. {
  3.  
  4. int zm = 0;
  5.  
  6. for (int i = 0; i < 80; i++)
  7. {
  8. if (i % 4 == 0)
  9. {
  10. pop[i] = 2;
  11. }
  12. else
  13. {
  14. pop[i] = 1;
  15. }
  16.  
  17.  
  18. }
  19. for (int a=00; a<80; a++)
  20. {
  21. cout<<tab[a]<<" ";
  22. }
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement