Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <time.h>
- srand( time(0u) ); //для случайности
- const int N = 15;
- int arr[N] = {};
- for ( unsigned i=0; i<N; i++ ) {
- arr[i] = rand() % 10; //Заполнение 0..9
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement