C语言循环结构编程题
教材P74,第4, 6题4题:#include <stdio.h>void main(){ int n,sum=0; for(n=1;n<=100;n=n+2) sum=sum+n;printf(
C语言循环结构编程题