zoukankan      html  css  js  c++  java
  • C++PRIMER PLUS第六版课后编程题答案 3.1-3.7


    3.1


    //3.1
    
    #include <iostream>
    const char c=10;
    
    int main31()
    {
    	using namespace std;
     cout<<"please enter your level"<<c<<endl;
     int l;
     cin>>l;
     cout<<"your level is"<<l*c<<endl;
     cin.get();
     cin.get();
     return 0;
     
         
        
    } 
    

    3.2

    //3.2
    #include <iostream.h>
    #include <math.h>
    const int CToC=12; //1英尺=12英寸 
    const double KToB=2.2;//1KG=2.2磅 
    const float CToM=0.0254;//1英尺=0.0254m 
    
    
    int main()
    {
        cout<<"Enter your Level:(英尺)";
        int yc;
        cin>>yc;
        cout<<"Enter your level:(英寸)";
        int yci;
        cin>>yci;
        cout<<"
    Now Enter your Weight:"<<endl;
        double w;
        cin>>w;
        int l=yc*CToC+yci;
        float li=l*CToM;
        double wi=w*KToB; 
        double bmi=wi/sqrt(li);
        cout<<"BMI="<<bmi;
        cin.get();
        cin.get();
        return 0;
        
    }
    


    3.3

    //3.3
    
    #include <iostream.h>
    
    const int DToM=60;
    const int MToS=60;
    
    int main()
    {
     cout<<"Enter a latitude in degrees,Minute,an seconds:"<<endl;
     cout<<"First,enter the degreess:";
     int d;
     cin>>d;
     cout<<"
    Next,enter the minutes of arc:";
     int m;
     cin>>m;
     cout<<"
    Finally,enter the seconds of arc:";
     int s;
     cin>>s;
     cout<<d<<" degreess ,"<<m<<" minutes, "<<s<<" seconds"
                        <<"="<<float(m/DToM+s/MToS/DToM+d)<<"degress"<<endl;
        cin.get();
        cin.get();
        return 0;
    }
    


    3.4-3.7懒得找了,这一章就发这两道算了


  • 相关阅读:
    MySQL主从复制集群添加slave节点
    GTID主从 与 传统主从复制
    20201207总结
    202011051 每周例行报告
    202011121 每周例行报告
    202010081 每周例行报告
    202011261 每周例行报告
    202010153 每周例行报告
    202010291 每周例行报告
    202011201 每周例行报告
  • 原文地址:https://www.cnblogs.com/qq84435/p/3664892.html
Copyright © 2011-2022 走看看