求1+2+…+n,
要求不能使用乘除法、for、while、if、else、switch、case等关键字
要求不能使用乘除法、for、while、if、else、switch、case等关键字
以及条件判断语句(A?B:C)
#include <stdio.h>
int sum(int n)
{
int tmp = 0;
(n) && (tmp = sum(n-1));
return n + tmp;
}
int main()
{
printf("%d\n", sum(100));
return 0;
}