计算机等级考试二级C语言试题及答案5
填空题 请补充main函数,该函数的功能是:求1=2!+3!+…+N!的和。 例如,1+2!+3!+…+5!的和为153。 仅在横线上所编写的若干表达式或语句,勿3改动函数中的其他任何内容。 #include main() { int i, n; long s = 0, t = 1; printf(" Input n: "); scanf("%d", ___1___); for (i=1; i<=n; i++) { t = ___2___; s = ___3___; } printf("1!+2!+3!...+%d!=%ld ", n, s); } 参考答案: 填空题 第一处空:&n 第二处空:t*i或i*t 第三处空:s+t首页 1 2 3 尾页 相关资料 |