I'm trying to make 2 collumns ( I know it's spelled wrong), one starting at 0 and the other starting at 10, then they will stop at the starting number of the other collumn. this is what I have so far.
#pragma argsused
int main()
{
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), LIGHTGREEN);
for ( int i = 0; i < 10; i++ ) {
for (int t =10; t > 0; t--){
cout<< i << " " << t << endl;
}
}
cin.get();
}