问题 填空题 有以下程序#include main (){int i, sum = 0;for (i = 1; i < 9; i += 2)sum += i;printf("%d\n", sum);}程序运行后的输出结果是 [9] 。 答案 参考答案:16