书籍名称:C++ Primer Plus(中文第五版)
错误说明:程序2.4 缺少赋值语句
- // sqrt.cpp--using the sqrt() function
- #include <iostream>
- #include <cmath>
- int main()
- {
- using namespace std;
- double area;
- cout<<"Enter the floor area,in square feet,of your home:";
- cin>>area;
- double side;
- side=sqrt(area);
- cout<<"That's the equivalent of a square
- <<" feet to the side."<<endl;
- cout<<"How fascinating!"<<endl;
- system("pause");
- return 0;
- }
T14缺少“"<<side”