Coding/CPP 삽질기2006. 8. 22. 00:35

[CODE]

#include <stdio.h>

int main (void) {   const int max = 19;   char space[] = "                   ";   char star[]  = "*******************";   int  size = 0;   int  idx;       printf ("Input Size : \n");   scanf ("%d", &size);     size = (size % 20) | 0x1;     for ( idx = 1; idx <= size; idx += 2) {        printf ("%s", &space[max- ((max-idx)/2)]);        printf ("%s\n", &star[max-idx]);   }   for ( idx = size-2; idx >= 1; idx -= 2) {        printf ("%s", &space[max- ((max-idx)/2)]);        printf ("%s\n", &star[max-idx]);   }   }

[/CODE]

/* 심심해서 해본 코딩...*/

'Coding > CPP 삽질기' 카테고리의 다른 글

비트 연산자  (0) 2007.04.24
입력 버퍼비우기  (0) 2006.02.23
파이프를 이용한 통신  (0) 2005.11.14
Posted by chobocho