题目详情
单选题 #include <stdio.h> fun(int n) { int s; if(n==0) s=7; else s=n+fun(n-1); return s; } void main() { printf("%d",fun(3)); }
A. 11
B. 12
C. 13
D. 14
学科:默认课程
时间:2025-11-05 13:21:31
相关题目
相关作业