首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴疯哈的代码贴C语言
#include <math.h>
#include <stdio.h>
int main()
{int n=0;
 double a[3],b=0,c,d,x=0,s;
 for(n=0;n<=2;n++)
scanf("%lf",&a[n]);    //输入用空格断开 
c=n;
printf("个数%f \n",c);
for(n=0;n<=c-1;n++)
b=b+a[n];
b=b/c;
......................
阅读全部 | 2021年11月15日 09:28
#include <math.h>
#include <stdio.h>
int main()
{int n=0;
 double a[3],b=0,c,d,x=0,s;
 for(n=0;n<=2;n++)
scanf("%lf",&a[n]);    //输入用空格断开 
c=n;
printf("个数%f \n",c);
for(n=0;n<=c-1;n++)
b=b+a[n];
b=b/c;
......................
阅读全部 | 2021年11月15日 09:28
1
疯哈