为什么if后面加上大括号结果反而不对 求解
#include <stdio.h> int year (int n) { int age; if(n==1){ age=10; } else{ age=age(n-1)+2; } return age; } int main() {