Untitled
unknown
plain_text
3 years ago
147 B
6
Indexable
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
float a, b, x;
cin >> a >> b;
x = sqrt(b/a);
cout << x;
}
Editor is loading...
#include <cmath>
#include <iostream>
using namespace std;
int main()
{
float a, b, x;
cin >> a >> b;
x = sqrt(b/a);
cout << x;
}