본문 바로가기

숫자 번호 찍기

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

 

 

#include<stdio.h>

void main()
{
 int x=0,y=0;

 for(y=1;y<2;y++)
 {
  for(x=0;x<5;x++)
   printf("%d \t",x+y);
   printf("\n");

  for(x=9;x>4;x--)
   printf("%d \t",x+y);
   printf("\n");

  for(x=10;x<15;x++)
   printf("%d \t",x+y);
   printf("\n");

  for(x=19;x>14;x--)
   printf("%d \t",x+y);
   printf("\n");

  for(x=20;x<25;x++)
   printf("%d \t",x+y);
   printf("\n");
 }
}

반응형

댓글