C and C++

Moderators: None (Apply to moderate this forum)
Number of threads: 28695
Number of posts: 94715

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Re: Square and Hollow Square in C Posted by TimCereja on 3 Mar 2010 at 7:59 PM
Well nevermind ... I put up this post prematurely. After some thinking about the problem I figured it out. Here it is:

#include <stdio.h>
int main( void )
{
int row;
int col;
int num;

printf("\n");
printf( "Please Enter a Number Between 1 and 20: " );
scanf( "%d", &num );

printf( "\n" );

for(row = 0; row < num; row++)
{
for(col = 0; col < num; col++)
{
printf("*");
}
printf("\n");
}

printf("\n");

for(col = 0; col < num; col++)
{
printf("*");
}

printf("\n");

for(row = 0; row < (num - 2); row++)
{
printf("*");

for(col = 2; col <= num; col++)
{
if (col == num)
printf("*");
else
printf(" ");
}
printf("\n");
}

for(col = 0; col < num; col++)
{
printf("*");
}

printf("\n");

return 0;
}

Thread Tree
TimCereja Square and Hollow Square in C on 3 Mar 2010 at 5:42 PM
TimCereja Re: Square and Hollow Square in C on 3 Mar 2010 at 7:59 PM



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.