```cpp
int main(){ double a,b,X; scanf(“%lf %lf”,&a,&b);//输入保留几位数字不是格式符规定的,是自己输入时保证的 X=(3.5a+7.5b)/(3.5+7.5); printf(“MEDIA = %.5lf”,X); return 0; }