#include <bits/stdc++.h>
using namespace std;
double a, b, U0;
vector<vector<double>> biao(12, vector<double>(5));
string dian_ya[5] = {"10", "6", "3", "1", "0.5"};
string digree[12] = {"15", "45", "75", "105", "135", "165", "195", "225", "255", "285", "315", "345"};
double avg[5], sum[5], ln_avg[5];
double ln_ba, ln_b;
double A[5], B[5], Ur[5];
void ji_suan()
{
for (int x = 0; x < 5; x++)
{
A[x] = U0 * ln_b / ln_ba;
B[x] = U0 / ln_ba;
}
}
void u_r()
{
for (int x = 0; x < 5; x++)
{
Ur[x] = A[x] - B[x] * ln_avg[x];
}
}
int main()
{