我想使用C语言完成一个计算方差的程序

好的,下面是一个计算方差的程序示例:

#include 
#include 

int main()
{
    int n, i;
    float x[100], sum=0, avg, variance=0;

    printf("Enter the number of elements: ");
    scanf("%d", &n);

    printf("Enter the elements: ");
    for(i=0; iscanf("%f", &x[i]);
       

你可能感兴趣的:(c语言,c++,算法,开发语言)