Primer Plus第五版清单2.4看不懂
发布网友
发布时间:2023-04-23 17:01
我来回答
共3个回答
热心网友
时间:2023-10-09 21:08
#include <iostream>
#include <cmath>
int main()
{
using manepace std; //使用命名空间std
double area;// 定义area
cout<<"Enter the floor area, in square feet, of your home: "; //控制台显示Enter the floor area, in square feet, of your home:
cin>>area; //控制台想area变量输入数据
double side; //定义side
side=sqrt(area); //计算 side = 根号下area
cout<<"That's the equivalent of a square //显示That's the equivalent of a square
<<"feet to the side."<<endl; //显示feet to the side.及一个换行符
cout<<"How fascinating"<<endl; //显示How fascinating及一个换行符
return 0; //主函数返回,程序结束
}
那是流,有点像对象 调用返回对象指针的函数一样的用法。
你说的那一句是不是少了 变量的输出了,所以控制台没有显示结果,只有文字
热心网友
时间:2023-10-09 21:08
cout<<"That's the equivalent of a square //这里貌似少写了 " << side
<<"feet to the side."<<endl;
其实就是cout << "That's the equivalent of a square" << side << "feet to the side." << endl;
写成了两行而已
热心网友
时间:2023-10-09 21:09
先别看这种有点难度的书,我最开始看THE C++ PROGRAM LANGUAGE差点走火入魔
先找本简单的国内的书看,别深入研究里面的东西,看个大概,一般看一个星期足够了,比如钱能的C++程序设计,我看了四天,基本实践一下
然后再去看国外的书,相对感觉比较轻松,而且又能学到好多东西,重点实践
才E文的注释,我全部都E文,不过我没你那本书,没法看,装个金山,不认识的查一下,见多了自然就认识了
你怕什么啊,我四级还没过呢,最讨厌做题了,坚持一小段时间后习惯就好了