Ответ:
#include <iostream>
#include <cmath>
using namespace std;
int main(){
float x,a,b;
cin >> a >> b;
x = pow((2*a + 1),2)/(pow(a,2)+ pow(b,2));
cout << x;
}
Объяснение:
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
#include <cmath>
using namespace std;
int main(){
float x,a,b;
cin >> a >> b;
x = pow((2*a + 1),2)/(pow(a,2)+ pow(b,2));
cout << x;
}
Объяснение: