Untitled

Anonymous
plain_text
01/02/2023 9:36 AM
208 B
16
Indexable
#include <iostream>
using namespace std;
int main() {
    float a, b, c;
    cin >> a >> b >> c;
    b = abs(b);
    cout << a * b / (2 * a - c);
}
Editor is loading...