首页 > 编程语言 >C++PrimerPlus中文第六版第2章编程练习答案

C++PrimerPlus中文第六版第2章编程练习答案

时间:2022-11-06 00:33:09浏览次数:44  
标签:std PrimerPlus cout int namespace C++ 第六版 using main

1、

#include<iostream>
using namespace std;
int main()
{
    cout << "Name: Luoxiao,\nAddress: Xidian University, Xi'an, Shaanxi Province, China.\n";
    return 0;
}

2、

#include<iostream>
using namespace std;
int main()
{
    float longs;
    cout << "Please input the distance in longs: ";
    cin >> longs;
    cout << longs << " longs equals to " << 220 * longs << " yards.\n";
    return 0;
}

3、

#include<iostream>
using namespace std;
void fun1(void);
void fun2();
int main()
{
    fun1(); fun1();
    fun2(); fun2();
    return 0;
}
void fun1()
{
    cout << "Three blind mice\n";
}
void fun2()
{
    cout << "See how they run\n";
}

4、

#include<iostream>
using namespace std;
int main()
{
    int age;
    cout << "Enter your age: ";
    cin >> age;
    cout << "Age " << age << " includes " << 12 * age << " months.\n";
    return 0;
}

5、

#include<iostream>
using namespace std;
int main()
{
    float celsius;
    cout << "Please enter a Celsius value: ";
    cin >> celsius;
    cout << celsius << " degrees Celsius is " << 1.8 * celsius + 32.0 << " degrees Fahrenheit.\n";
    return 0;
}

6、

#include<iostream>
using namespace std;
int main()
{
    double lightYears;
    cout << "Enter the number of light years: ";
    cin >> lightYears;
    cout << lightYears << " light years = " << 64240 * lightYears << " astronomial units.\n";
    return 0;
}

7、

#include<iostream>
using namespace std;
void fun(int, int);
int main()
{
    int hour, minute;
    cout << "Enter the number of hours: ";
    cin >> hour;
    cout << "Enter the number of minutes: ";
    cin >> minute;
    fun(hour, minute);
    
    return 0;
}
void fun(int hour, int minute)
{
    cout << hour << ":" << minute << endl;
}

 

标签:std,PrimerPlus,cout,int,namespace,C++,第六版,using,main
From: https://www.cnblogs.com/xinmind/p/16861787.html

相关文章

  • C++对象模型:g++的实现(五)
    这篇博客来讲一下g++实现的C++对象模型中的虚函数的实现,包括:单一继承体系下的虚函数,多继承下的虚函数和虚继承下的虚函数。其中虚继承下的虚函数在《深度探索C++对象模型》......
  • C++构造函数初始化列表注意的坑
    原文链接:https://www.zhoubotong.site/post/87.html之所以写这篇文章,是觉得里面有些细节如果不注意,很容易出错或踩坑,网上有很多教程对这块的描述部分存在错误。希望下面......
  • Effective C++ - 条款13 - 以对象管理资源
    直接使用指针管理对象并不安全,因为可能忘记delete指针/delete语句并未按照预期执行而提前被exception中断了程序etcRAII观念:资源取得时机便是初始化时机.例如使用工厂......
  • Windows 下用 MinGW-64 配置 VScode 的 C/C++ 环境
    蒟蒻第一次发博客,轻喷~我在安装VScode的时候可谓历经磨难,所以就萌生出写这篇文章的想法。Windows下用MinGW-64配置VScode的C/C++环境一、下载MinGW-w64并添......
  • 三级指针动态分配/释放内存(C / C++)
    C语言版本#include<stdio.h>#include<stdlib.h>#definehigh2#definerow3#definecol4intmain(){inti,j,k;//p[2][3][4]int......
  • C++生成DLL给C#调用
    1、添加C++动态链接库(DLL)2、添加头文件test.h#ifndefTEST_H#defineTEST_H//添加要在此处预编译的标头#include"framework.h"#endif//TEST_Hextern"C"_......
  • C++——优先级队列(priority_queue)
    其为队列需要包含头文件#include,其与queue的不同之处在于,可以自定义数据的优先级,让优先级高的排在队列的前面,优先出队;优先队列具有队列的所有特性,包括基本操作,只是在此基......
  • 初步认识c++之命名空间详解(千字长文带你刨析你命名空间的细节)
    初识c++之命名空间详解前言:c++是在c语言的基础上进一步发展出来的用于弥补c语言缺陷的语言,是c语言的超集,添加了很多新的特性,使其编程更加方便!下面就让我们开始初步认识c++......
  • C++《面向对象程序设计课程设计》
    C++《面向对象程序设计课程设计》《面向对象程序设计课程设计》课程说明适用专业:计算机科学与技术课程周数:5周一、根据计算机科学与技术专业人才培养方案制订。(一)课程......
  • C++ 命名类型转换
    目录​​传统艺能......