#include<iostream>
using namespace std; int main()
{
const int unit=;
int shen_gao;
cout <<"Please enter your leight in inches:____\b\b\b";
cin >> shen_gao;
cout << "It is contains: " << shen_gao / unit << " feet" << ", " << shen_gao % unit << " inches.";
cin.get();
cin.get(); return ;
}

#include<iostream>
using namespace std; const int F_1 = ;
const double F_2 = 0.0254;
const double F_3 = 2.2; int main()
{
int feet;
int inch;
double pound;
double BMI; cout << "What's your heights?" << endl;
cout << "Please enter your heights in feet: ";
cin >> feet;
cout << "Please enter your heights in inch: ";
cin >> inch;
cout << endl << "What's your pound?" << endl << "Please enter your pound: ";
cin >> pound;
BMI = (pound/F_3)/((inch+feet* F_1)*F_2);
cout << endl << "Your BMI is " << BMI*BMI << "."; cin.get();
cin.get();
return ;
}

#include<iostream>
using namespace std; const int Du_fen = ;
const int Fen_miao = ; int main()
{
int degrees;
int minutes;
int seconds; cout << "Enter a latitude in degrees, minutes, seconds:\n" << "First, enter the degrees: ";
cin >> degrees;
cout << "Next, enter the minutes of arc: ";
cin >> minutes;
cout << "Finally, enter the seconds of arc: ";
cin >> seconds;
cout << degrees << " degrees, " << minutes << " minutes, " << seconds << " seconds = "
<< degrees + double(minutes) / Du_fen + double(seconds) / Fen_miao / Du_fen << " degrees"; cin.get();
cin.get();
return ;
}

#include<iostream>
using namespace std; const int day_hour = ;
const int hour_min = ;
const int min_sec = ; int main()
{
int day;
int hour;
int min;
int sec;
long second;
cout << "Enter the number of seconds: ";
cin >> second; day = second / min_sec / hour_min / day_hour;
hour = second / min_sec / hour_min % day_hour;
min = second / min_sec % hour_min;
sec = second % min_sec;
cout << second << " seconds = " << day << " days, " << hour << " hours, " << min << " minutes, " << sec << " seconds."; cin.get();
cin.get();
return ; }

#include<iostream>
using namespace std; int main()
{
long long peo_of_wor;
long long peo_of_con; cout << "Enter the world's population: ";
cin >> peo_of_wor;
cout << "Enter the population of the US:";
cin >> peo_of_con;
cout << "The population of the US is " << (double(peo_of_con) / peo_of_wor * ) << "% of the world population."; cin.get();
cin.get();
return ;
}

#include<iostream>
using namespace std; int main()
{
double miles, gallons, kilometers, liter;
int flage; cout << "You have two forms of fuel consumption: " << endl
<< "1- the mile of per gallons" << endl
<< "2- the liter of one hundred kilometer" << endl
<< "Plesase chioce(enter 1 or 2): ";
cin >> flage;
if (flage == )
{
cout << "Please enter the distance(mile): ";
cin >> miles;
cout << "Please enter the gasoline amount(gallon): ";
cin >> gallons;
cout << "Wasting a gallon gasoline run " << miles / gallons << " miles." << endl;
}
else {
cout << "Please enter the distance(kilometer):";
cin >> kilometers;
cout << "Please enter the gasoline amount(liter):";
cin >> liter;
cout << "Wasting gasoline per hundred kilometers is " << liter / kilometers * << " liters." << endl;
}
cin.get();
cin.get();
return ;
}

#include<iostream>
using namespace std;
const float One_H_Kilometer_mile = 62.14;
const float Gallon_liter = 3.875; int main()
{
float european_style;
float america_style;
cout << "Please enter European style fuel consumption: ";
cin >> european_style;
america_style = One_H_Kilometer_mile * Gallon_liter / european_style;
cout << european_style << "/100 km = " << america_style << " mpg";
cin.get();
cin.get();
return ;
}

c++ primer plus 第三章 课后题答案的更多相关文章

  1. c++ primer plus 第七章 课后题答案

    #include <iostream> using namespace std; double HAR_AVG(double, double); void TEST(bool); int ...

  2. c++ primer plus 第六章 课后题答案

    #include <iostream> #include <cctype> using namespace std; int main() { char in_put; do ...

  3. c++ primer plus 第五章 课后题答案

    #include <iostream> using namespace std; int main() { ; cout << "Please enter two n ...

  4. c++ primer plus 第四章 课后题答案

    #include<iostream> #include<string> using namespace std; int main() { string first_name; ...

  5. C++第三章课后作业答案及解析---指针的使用

    今天继续完成上周没有完成的习题---C++第三章课后作业,本章题涉及指针的使用,有指向对象的指针做函数参数,对象的引用以及友元类的使用方法等 它们具体的使用方法在下面的题目中会有具体的解析(解析标注在 ...

  6. c++ primer plus 第二章 课后题答案

    #include<iostream> using namespace std; int main() { cout << "My name is Jiantong C ...

  7. python核心编程第5章课后题答案

    5-8Geometry import math def sqcube(): s = float(raw_input('enter length of one side: ')) print 'the ...

  8. python核心编程第4章课后题答案(第二版75页)

    4-1Python objects All Python objects have three attributes:type,ID,and value. All are readonly with ...

  9. python核心编程第3章课后题答案(第二版55页)

    3-4Statements Ues ; 3-5Statements Use\(unless part of a comma-separated sequence in which case \ is ...

随机推荐

  1. C++中的访问权限

    C++中类的成员的权限: private:只能由该类的成员函数,友元函数访问,不能被该类的对象访问. protected:除了private外还能被子类的函数访问,同样不能被该类的对象访问. publ ...

  2. camera原理

    1)Color Filter Array---CFA 图像传感器都采用一定的模式来采集图像数据,常用的有 BGR 模式和 CFA 模式.BGR 模式是一种可直接进行显示和压缩等处理的图像数据模式,它 ...

  3. 33. Search in Rotated Sorted Array(二分查找)

    Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e. ...

  4. MYSQL的存储过程和函数简单写法

    存储过程 MySQL中,创建存储过程的基本形式如下: CREATE PROCEDURE sp_name ([proc_parameter[,...]]) [characteristic ...] ro ...

  5. org.apache.catalina.core.StandardWrapperValve invoke的解决办法

    org.apache.catalina.core.StandardWrapperValve invoke的解决办法 比较容易错的地方是页面带参数进行跳转,由于跳转之后的页面本身也要执行一部分sql语句 ...

  6. css去掉a标签点击后的虚线框,outline,this.blur()

    css去掉a标签点击后的虚线框,outline,this.blur() outline是css3的一个属性,用的很少.声明,这是个不能兼容的css属性,在ie6.ie7.遨游浏览器都不兼容. outl ...

  7. 50个CSS技巧

    这里我工作中收集了10个很不错的CSS技巧,你可以用在你的项目上.它可以帮你很好地整理你的元素并让他们看起来蛮酷的.下面开始我们的内容,希望你会喜欢它.下面是我收集的CSS技巧,希望能帮助到你,感觉收 ...

  8. centos 网卡配置

    地址:/etc/sysconfig/network-scripts vi  /etc/sysconfig/network-scripts/ifcfg-eth0 1.固定ip配置 DEVICE=eth0 ...

  9. AtCoder Beginner Contest 086 D - Checker

    Time limit : 2sec / Memory limit : 256MB Score : 500 points Problem Statement AtCoDeer is thinking o ...

  10. 2016NOI冬令营day4

    上午:随机算法/近似算法与随机算法的分析方法与应用实例 不懂,完全滑水QAQ :( 下午:计算理论与NP问题 只有讲2-sat和3-sat的时候能听懂,其他的基本都在滑水:( 晚上说是什么中学生学术训 ...