编辑代码

#include <stdio.h>
int fun(int i)
{
	if(i==1)
	return 1;
	return fun(i-1)+1;
}
int main () {

   printf("%d",fun(6));
	return 0;
}