程序设计题 编程计算1到100之间所有偶数的和,并将结果打印在屏幕上。 编程要求:请用for循环编写程序。 #include <stdio.h> void main() { int i, sum = 0; }