#include #include using namespace std; int main() { float x; cout << "x = "; cin >> x; if (x >= 0) { float w = sqrt(x); cout << "Wurzel ist " << w << endl; } else cout << "Wurzelberechnung nicht möglich! " << endl; return 0; }