用for循环语句计算1+3+5+.+2(n-1)其中n=1,2,.100
问题描述:
用for循环语句计算1+3+5+.+2(n-1)其中n=1,2,.100
答
int n,sum=0;
scanf("%d",&n);
n=2(n-1);
for(int i=1;i