#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
srand(21);
cout << "Unique numbers:";
for (int x = 1; x < 10; x++){
cout << 1 + ( rand () % 20) <<endl;
}
system("pause>0");
return 0;
}
Guys this is my program. Can i ask if how can i vertical the output? what will i used? thanks