Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <iostream>
using namespace std;
int main(void)
{
srand((unsigned)time(NULL));
char* s="ABCDEFGHIJ";
cout << s << endl;
for (int i=0;i<4;i++)
{
random_shuffle(s,s+strlen(s));
cout << s << endl;
}
return 0;
}
// outputs...........
ABCDEFGHIJ
CIJDBEAHGF
CFBDEIGAHJ
IDJABEFGHC
DBJIFEGACH
srand(time(0));
random_shuffle(s, s + strlen(s), rand );