/*-------------------------------------------------------
功能:编程实现求1-10(包含1,不包含10)之间的所有数的乘积并输出。(使用while)
--------------------------------------------------------*/
#include <stdio.h>
main( )
{  
    int i=1, sum=1;
/**********Program**********/
	while(i<10){
		sum*=i;
		i++;
	}

/**********  End  **********/    
    printf("the sum of odd is :%d\n",sum);
}