atler 0 Newbie Poster
int cols, rows;
int thehead=9;
for( cols = 1; cols <= thehead; cols++)
{
    for(rows = 1; rows <= thehead; rows++)
    {
        if(((cols+rows)==5) || ((rows-cols)==5))
        {
            cout << " ";
        }
        else
        {
            cout <<"*";
        }
}
cout<<endl;
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.