用while循环写出[1,100]奇数之和,并统计出能被8整除数的个数.

问题描述:

用while循环写出[1,100]奇数之和,并统计出能被8整除数的个数.

void main()
{
int i = 1;
int sum = 0;
int count = 0;
while(i