⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mean.c

📁 NIST Handwriting OCR Testbed
💻 C
字号:
/*# proc: compute_mean - takes a list of integers and computes the mean.# proc:*/float compute_mean(ls, end)int *ls, end;{   int i;   float sum = 0.0;   for(i = 0; i < end; i++)      sum += (float)ls[i];   sum = sum/(float)end;   return(sum);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -