Mélanger aléatoirement les objets d’un tableau avec l’algorithme ‘random_shuffle()’

Author:


Download


#include 
#include 
#include 
using namespace std;

int main() {

  int tab[100];

  cout<<"Contenu initial du tableau: ";
  for (int i = 0; i < 100; ++i)
  {
    tab[i] = i;
    cout<
    

Leave a Reply

Your email address will not be published. Required fields are marked *