Advertisement
Ziarqq

Untitled

May 5th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. void drukowanie(double tablica[10][5][30]);
  2. {
  3. cout << "Wypisanie tablicy: " << "\n";
  4. for(int a = 0; a < 10; a++)
  5. {
  6. for(int b = 0; b < 5; b++)
  7. {
  8. for(int c = 0; c < 30; c++)
  9. {
  10. cout << tablica[a][b][c] << "\t";
  11. }
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement