- 1、本文档共73页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Chapter 2
// pe2-2.cpp
#include iostream
int main(void)
{
using namespace std;
cout Enter a distance in furlongs: ;
double furlongs;
cin furlongs;
double feet;
feet = 220 * furlongs;
cout furlongs furlongs =
feet feet\n;
return 0;
}
// pe2-3.cpp
#include iostream
using namespace std;
void mice();
void run();
int main()
{
mice();
mice();
run();
run();
return 0;
}
void mice()
{
cout Three blind mice\n;
}
void run()
{
cout See how they run\n;
}
// pe2-4.cpp
#include iostream
double C_to_F(double);
int main()
{
using namespace std;
cout Enter a temperature in Celsius: ;
double C;
cin C;
double F;
F = C_to_F(C);
cout C degrees Celsius =
F degrees Fahrenheit\n;
return 0;
}
double C_to_F(double temp)
{
return 1.8 * temp + 32.0;
}
Chapter 3
// pe3-1.cpp
#include iostream
const int Inch_Per_Foot = 12;
int main(void)
{
using namespace std;
// Note: some environments dont support the backspace character
cout Please enter your height in inches: ___/b/b/b ;
int ht_inch;
cin ht_inch;
int ht_feet = ht_inch / Inch_Per_Foot;
int rm_inch = ht_inch % Inch_Per_Foot;
cout Your height is ht_feet feet, ;
cout rm_inch inch(es).\n;
return 0;
}
// pe3-3.cpp
#include iostream
const double MINS_PER_DEG = 60.0;
const double SECS_PER_MIN = 60.0;
int main()
{
using namespace std;
int degrees;
int minutes;
int seconds;
double latitude;
cout Enter a latitude in degrees, minutes, and seconds:\n;
cout First, enter the degrees: ;
cin degrees;
cout Next, enter the minutes of arc: ;
cin minutes;
cout Finally, enter the seconds of arc: ;
cin seconds;
latitude = degrees + (minutes + seconds / SECS_PER_MIN)/MINS_PER_DEG;
cout degrees degrees, minutes minutes,
seconds seconds = latitude degrees\n;
return 0;
}
// pe3-5.cpp
#include iostrea
您可能关注的文档
- 50个C、C++面试题.pdf
- Boost教程.pdf
- C_C++笔试题大全.doc
- C_C++程序员面试宝典——第1章__了解面试——通过面试抓住机会.pdf
- C_C++程序员面试宝典——目录.pdf
- C++_MFC入门教程.doc
- C++_Primer_4th_(第4_版)习题解答_.doc
- C++_Primer中文版.pdf
- C++_标准模板库(STL).pdf
- C++_的各种文件读写操作总结.doc
- 2024年后半学期学习计划(15篇).pdf
- 2023年部编版七年级语文(下册期中)复习题及答案.pdf
- 2024社区后备干部考试应知应会题库及答案.pdf
- 2022~2023燃气职业技能鉴定考试题库及答案第454期.pdf
- 2022年-2023年上海市叉车司机N1模拟考试题试卷(含答案).pdf
- 2022~2023内科护理(中级)考试题库及答案第789期.pdf
- 2024年广东省深圳市龙岗实验中学中考联考英语试卷含答案.pdf
- 2024年全员安全生产“大学习、 大培训、 大考试”考前练习题及答案.pdf
- 2023年国家公务员考试公共基础知识法律知识题库及答案(共150题).pdf
- 11 区域发展-2023年高考地理二模试题分项汇编(广东专用).pdf
文档评论(1)