题目详情
填空题 以下程序的运行结果是 . #include "stdio.h" fun(int n) {int s; if(n==0) s=7; else s=n+fun(n-1); return s; } main() { printf("%d",fun(3));}
学科:默认课程
时间:2025-12-24 23:49:09
相关题目
相关作业