IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> (一)《C++ Primer Plus》 | 第 2 章:开始学习 C++ -> 正文阅读

[开发工具](一)《C++ Primer Plus》 | 第 2 章:开始学习 C++

(1)编写 C++ 程序显示姓名和地址。

#include <iostream>

using namespace std;

int main()
{
	cout << "My name is zhangts20." << endl;
	cout << "I live in Sichuan." << endl;
	return 0;
}

(2)编写 C++ 程序,它要求用户输入一个以 long 为单位的单位的距离,让后将它转换为码(一 long 等于 220 码)。

#include <iostream>

using namespace std;

int main()
{
    cout << "Please enter the distance in long: ";
    int dist;
    cin >> dist;
    cout << dist << " longs are " << dist * 220 << " yards." << endl;
    return 0;
}

(3)编写 C++ 程序,它使用 3 个用户定义的函数(包括 main 函数)产生输出。

#include <iostream>

using namespace std;

void func1();

void func2();

int main()
{
    func1();
    func1();
    func2();
    func2();
    return 0;
}

void func1()
{
    cout << "Three blind mice" << endl;
}

void func2()
{
    cout << "See how they run" << endl;
}

(4)编写 C++ 程序,让用户输入年龄,然后显示该年龄包含多少个月。

#include <iostream>

using namespace std;

int main()
{
    cout << "Enter your age: ";
    int age;
    cin >> age;
    cout << age << " years contain " << age * 12 << " months." << endl;
    return 0;
}

(5)编写 C++ 程序,其中 main 函数中调用自定义函数,该函数以摄氏度值为参数并返回相应的华氏摄氏度。

#include <iostream>

using namespace std;

double convert(double);

int main()
{
    cout << "Please enter a Celsius value: ";
    double c;
    cin >> c;
    cout << c << " degrees Celsius is " << convert(c) << " degrees Fahrenheit." << endl;
    return 0;
}

double convert(double v)
{
    return 1.8 * v + 32.0;
}

(6)编写 C++ 程序,其中 main 函数中调用自定义函数,该函数以光年值为参数,并返回相应的天文单位值。

#include <iostream>

using namespace std;

double convert(double);

int main()
{
    cout << "Please enter the number of light years: ";
    double c;
    cin >> c;
    cout << c << " light years = " << convert(c) << " astronomical units." << endl;
    return 0;
}

double convert(double v)
{
    return 63240 * v;
}

(7)编写 C++ 程序,要求用户输入小时数和分钟数,在 main 函数中,将这个两个值传递给一个 void 函数并完成打印。

#include <iostream>

using namespace std;

void show(int, int);

int main()
{
    cout << "Enter the number of hours: ";
    int hours;
    cin >> hours;
    cout << "Enter the number of minutes: ";
    int minutes;
    cin >> minutes;
    show(hours, minutes);
    return 0;
}

void show(int hs, int ms)
{
    cout << "Time: " << hs << ":" << ms << endl;
}
  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-11-29 16:30:44  更:2021-11-29 16:31:27 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 17:28:34-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码