Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <istream>
  2. using namespace std;
  3. //naplňte každý lichý řádek dvourozměrného pole jedničkami
  4. int const radek=2;
  5. int const sloupec=2;
  6. int main ()
  7. {
  8. int pole[radek][sloupec];
  9.  
  10. for (int i=0;i<radek;i++)
  11. {
  12.  
  13. if (radek%2 !=0)
  14. }
  15. for (int j=0;j<sloupec;j++)
  16. {
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement