[求助] a=(float) (7/4),a是多少?为什么?
刚在看C语言入门教程~看到这问题~不会....
a是1.75
我们可以用
a=(float) (7/4);
cout<<a<<endl;
来验证我的说法。
#include <iostream>using namespace std;
struct Node{
float data;
Node(){}
Node(float t){data=1.75;}
}a;ostream& operator <<(ostream& out,const Node& nt)
{
return out<<nt.data;
}int main()
{
a=(float) (7/4);
cout<<a<<endl;
}
[此贴子已经被作者于2007-7-9 0:08:10编辑过]