@drunken monkey:

Es geht tatsächlich!!!!
ok, dann nehme ich ab nun nur noch durch 2^x teilbare Zahlen für so was!
Hier noch mal was am Ende dabei rauskommt:
Code:
#include <iostream>

using namespace std;

double Global=0;

const double PI=3.141592653;

void BR()
{
   cout<<'\n';
}
double Wurzel(double a, double b=0);

int main(void)
{
   cin>>Global;
   cout<<Wurzel(Global);
   BR();
   
   cin>>Global;
   return 0;
}
double Wurzel(double a, double b)
{
   while(a>b*b)
   {
      b+=0.0009765625;
   }
   return b;
}
@TheBiber:
Das müsste aber eigentlich gehen, ist ein C++ Projekt
Mfg Tridestaros