无论怎样也找不出问题
#include <stdlib.h>#include <iostream>
#incuude<string.h>
#include<<math.h>
using namespace std;
double QQ();
int main(){
double x;
for(;;){
cout<<"请输入一个数字";
x=QQ();
if(x==0.0)
break;
cout<<sqrt(x);
cout<<endl;
}
system("PAUSE");
return EXIT_SUCCESS;
}
double QQ(){
char a[100];
cin.getline(a,99);
if(strlen==0)
return 0.0;
return atof(a);
}