题目简单,注意输出格式即可。
#include<stdio.h> int main() { double A,B,X; scanf("%lf%lf",&A,&B); X=(A*3.5+B*7.5)/11; printf("MEDIA = %7.5lf",X); return 0; }