【简答题】A.She likes the first one though it is expensive. B.She doesn't like both of them. C.She's going to choose the cheaper one to save money. D.She prefers the expensive one with less maintaining cost.
【单选题】下面程序的输出结果是________。(参考代码:XT_09_01_03.C) #include int f(){ static int i=0; int s=1; s+=i; i++; return s; } int main() { int i,a=0; for(i=0;i<5;i++) a+=f(); printf("%d\n",a); }