刚开始加权那一块搞不清,而且输出数据占几列搞错了
#include<stdio.h> int main() { double A,B; scanf("%lf%lf",&A,&B); printf("MEDIA = %7.5lf\n",(A*3.5+B*7.5)/11.0); return 0; }