Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3. #inluce <cstdlib>
  4. using namespace std;
  5.  
  6. int tab5x5 [5][5];
  7. int main()
  8. {
  9. srand(time(NULL));
  10. for (int i=0;i<5;i++)
  11. {
  12. for(int j=0;j<5;j++)
  13. {
  14. tab5x5 [i][j]=rand() %100;
  15. }
  16. }
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement