본문 바로가기

숫자 피라미드 찍기

ko.konene 발행일 : 2012-06-26
반응형

 


#include<stdio.h>

void main()
{
 int x=0,y=0,nCount=0;
//=====================1행===============================
y=0;
 {
  for(x=0;x<5;x++)
  {
   if(x+y<4)
   {
    printf("\t");
   }
   else
   {
    for(nCount=1;nCount<2;nCount++)
    printf("%d",nCount);
   }
  }
   printf("\n");
 }
//=====================2행===============================
y=1;
 {
  for(x=0;x<4;x++)
  {
   if(x+y<4)
   {
    printf("\t");
   }
   else
   {
    for(nCount=2;nCount<5;nCount++)
    {
     printf("%d \t",nCount);
    }
   }
  } 
  printf("\n");
 }
//=====================3행===============================
y=2;
 {
  for(x=0;x<3;x++)
  {
   if(x+y<4)
   {
    printf("\t");
   }
   else
   {
    for(nCount=5;nCount<10;nCount++)
    {
     printf("%d \t",nCount);
    }
   }
  }
  printf("\n");
 }
//=====================4행===============================
y=3;
 {
  for(x=0;x<2;x++)
  {
   if(x+y<4)
   {
    printf("\t");
   }
   else
   {
    for(nCount=10;nCount<17;nCount++)
    {
     printf("%d \t",nCount);
    }
   }
  }
  printf("\n");
 }
//=====================5행===============================
 for(nCount=17;nCount<26;nCount++)
  {
   printf("%d \t",nCount);
  }
 printf("\n");
}

반응형

'컴퓨터 > C Lang' 카테고리의 다른 글

숫자 삼각형 반대로 찍기  (0) 2012.06.26
숫자 차례대로 삼각형 찍기  (0) 2012.06.26
숫자 번호 찍기  (0) 2012.06.26
입력한 5개의 정수 에서 가장 낮은 수,가장 높은 수  (0) 2012.06.26
1단~9단  (0) 2012.06.25

댓글