for 간게 걸 구;; -
그 게 ㅋㅋ ...;; -
깐.. int pivo(present,next,p_num,num) <- 여기 변수들 앞에 int 붙여야 되는거 아닌가;;?
게 갔 int 거 그 ;;; -
고! -
그 게 ㅋㅋ ...;; -
깐.. int pivo(present,next,p_num,num) <- 여기 변수들 앞에 int 붙여야 되는거 아닌가;;?
게 갔 int 거 그 ;;; -
고! -
#include<stdio.h> /* pivo 기 기 pivo 고 */ void pivo(); void main(){ /* 1 num1 */ int num1, num2, count; num1 = 1; num2 = num1 + 0; /* 까 */ printf(" 까 ? : "); scanf("%d",&count); /*pivo(,, 감,구기 )*/ pivo(num1,num2,count,count); printf("\n %d 까 구.\n",count); } /*p_num : 10까 구 count 10 고 p_num 10 간 p_num 1감 0 까 10 경 11 기 if 고 p_num 1감 간(?!?!)*/ int pivo(int present,int next,int p_num,int num){ if(!p_num) return; //p_num 0 if(!거) return p_num = p_num - 1; printf(" %3d : %d \t", num - p_num,present); // = - if(!((num-p_num)%4)) printf("\n"); // - 4 기 /* 기 present next 고 next next present+next .*/ pivo(next,present+next,p_num,num); }