printing words around

hey everyone,
I stuck on this program which I trying to make a word print out but it looks like its moving. like example the words you see below the TV news screen. here is what I have so far. the program can print right but cant print down, left, or up.
#include <iostream>
#include <stdlib.h>
using namespace std;

int main()
{
for(int j=1; j<=50; j++)
{
if(j>1)
{

for(int k=1; k>=20; k++)
{
cout<<" ";
}
}
if(j==20)
{
for (int colm=1; colm<=50; colm++)
{
for (int blkrow=1; blkrow<=colm-1; blkrow++)
{
cout<<" ";
}
cout<<"Right";

for(int y=1; y<=19000000; y++)
{

}

system("cls");
}
}

}

for(int y=1; y<=20; y++)
{
for(int x=1; x<=50; x++)
{

cout<<" ";
}
cout<<"down"<<endl;



for(int z=1; z<=20000000; z++)
{

}
system("cls");
}








return 0;
}

Topic archived. No new replies allowed.