#include<stdio.h>
#include<math.h>
int main()
{
double SA, a, b, c, V, T1, T2;
a = 1 - pow((V*T1), 2) / pow(600, 2) - pow((V*T2), 2) / pow(450, 2);
b = (pow(600, 2) - pow((V*T1), 2)*V*T1 / pow(600, 2) + (pow(450, 2) - pow((V*T2), 2))*V*T2 / pow(450, 2);
c = pow(((450 - V * T2) / 900), 2) - (pow(((600 - V * T1) / 1200), 2);
SA = (sqrt(b*b - 4 * a*c) - b) / (2 * a);
}
//求采纳
一点点拆分赋值就行