下面程序的功能是计算1到10之间的奇数之和及偶数之和,请完善程序。#include int main() { int a,b,c,i; a=c=0; for(i=0;i<=10;i+=2) { a+=i; ___; c+=b ; } printf("sum of the even = %d",a) ; printf("sum of the odd = %d",___) ; return 0 ; } 相关知识点: 试...