본문 바로가기
dev, tech

행의 갯수 세기

by 구띵 2006. 5. 3.

#include<stdio.h>
main()
{
    int c, nl;
   
    nl=0;
   
    while((c=getchar())!=EOF)
        if(c=='\n')
            ++nl;
    printf("%d\n",nl);
   
    system("PAUSE");

}

 

//////////////////////////////////////////////////////

 

EOF : end of file - 여기서는 ^Z ( 컨트롤 + Z )

 

댓글