我是c ++的新手,我正在尝试编写一个代码来将字符串转换为float(我不应该使用atof),但我的代码输出为0。请帮我理解是什么问题:
char A[10];
int N[10],c,b=10,a=0,p=0,i;
float s=0.1;
cout<<"reshte ra vared namaeed:";
cin>>A;
for( i=0;A[i]=!'.';i++)
{
a=(a*b)+(A[i]-48);
}
for(A[i]=='.';A[i]!='\0';i++)
{
p=(p*s)+(A[i]-48);
}
cout<<a+p;
getch();
return 0;
答案 0 :(得分:2)
您可以使用StringStream。
#include <iostream>
#include <string>
#include <sstream>
你可以很容易地使用它。例如:
stringstream sstr;
string s;
float f;
cin >> s; // Get input from stdin
sstr << s; // Copy string into stringstream
sstr >> f; // Copy content of stringstream into float
cout << f << endl; // Output your float
当然你可以把它放到一个函数/模板中。
答案 1 :(得分:0)
如果作业需要你展示数学,你可以使用这样的东西:
char A[10];
int f1=0;
int dot_index=0;
cout << "Enter a floating point number:" << endl;
cin>>A;
for(int i=0; A[i]!='.'; i++)
{
f1= ( f1*10 ) + ( A[i]-48 );
dot_index=i+1; //we will stop 1 char before '.'
}
float f2=0;
int count=1;
for(int i=dot_index+1;A[i]!='\0';i++)
{
float temp1 = static_cast<float>(A[i]-48);
float temp2 = pow(10,count);
f2+= temp1/temp2;
count++;
}
float f = f1 + f2;
cout<< " float : " << f1 << "+" << f2 << " = " << f << endl;
printf("\n float %.10f",f);
但是我怀疑某些浮点计算的精度会出现问题。