[송수생] [피보나치] [데블스캠프2005/월요일]에서 만든 [C언어] 피보나치 예제 {{{~cpp #include int main(){ int num_prev=1; int num_next=1; int num_temp=0; int pvio=0; int count; printf("숫자를 입력 하세요:"); scanf("%d", &pvio); count = pvio; while(1) { num_temp =num_prev + num_next; num_prev = num_next; num_next = num_temp; count-- ; printf("%d\n",num_prev); if (count == 0) break; } return 0; } }}}