当前位置: 首页 > article >正文

《C++ primer plus》第六版课后编程题-第02章

第二章

#include<iostream>
using namespace std;

//每个题用一个函数执行,no后接的数字为题号。将函数放入main函数即可运行。

void no1() {
	cout << "我的名字" << "我的地址" << endl;
}

void no2() {
		long n;
		cin >> n;
		cout << n * 220 << "码" << endl;
}

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

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

void no3() {
	no3_1();
	no3_1();
	no3_2();
	no3_2();
}

void no4() {
	cout << "Enter your age:" << endl;
	int n;
	cin >> n;
	cout << n * 12 << endl;
}

double no5_sub(double Celsius) {
	return Celsius * 1.8 + 32.0;
}

void no5() {
	double Celsius;
	cout << "Please enter a Celsius vlaue:";
	cin >> Celsius;
	double Fahrenheit=no5_sub(Celsius);
	cout << Celsius << " degrees Celsius is " << Fahrenheit << " degrees Fahrenheit" << endl;
}

double no6_sub(double LY) {
	return 63240* LY;
}

void no6() {
	cout << "Enter the number of light years:";
	double LY, astronomical;
	cin >> LY;
	astronomical = no6_sub(LY);
	cout << LY << " light year = " << astronomical << " astronomical units." << endl;
}

void no7_sub(int h,int m) {
	cout << "Time: " << h << ":" << m << endl;
}

void no7() {
	int hours, minutes;
	cout << "Enter the number of hours:";
	cin >> hours;
	cout << "Enter the number of minutes:";
	cin >> minutes;
	no7_sub(hours,minutes);
}




http://www.kler.cn/a/514189.html

相关文章:

  • c++ 与 Matlab 程序的数据比对
  • Objective-C语言的数据类型
  • 将 AzureBlob 的日志通过 Azure Event Hubs 发给 Elasticsearch(1.标准版)
  • 深入探索 Nginx 的高级用法:解锁 Web 服务器的强大潜能
  • Kafka-常见的问题解答
  • Java-数据结构-二叉树习题(2)
  • 华为E9000刀箱服务器监控指标解读
  • PyTorch使用教程(4)-如何使用torch.nn构建模型?
  • 四、华为交换机 STP
  • Java 权限修饰符
  • AI赋能Flutter开发:ScriptEcho助你高效构建跨端应用
  • 算法随笔_15: 找到K个最接近的元素
  • Vue 3中导航守卫(Navigation Guard)结合Axios实现token认证机制
  • 62,【2】 BUUCTF WEB [强网杯 2019]Upload1
  • 422. 有效的单词方块
  • 在stm32中C语言编写的程序中,一个整形数据是怎么存储的,高位在前还是低位在前
  • Qt按钮美化教程
  • 高频交易中 FPGA 的作用及面试指南
  • 小红书用户作品列表 API 系列,返回值说明
  • Go CSP并发模型
  • python md5加密
  • 《AI赋能光追:开启图形渲染新时代》
  • 3.1 Go函数调用过程
  • 论文+AI赋能教育:探索变革路径与创新实践。包括word和pdf格式。
  • 校园二手交易平台小程序设计与实现(LW+源码+讲解)
  • Vue.js 组件开发:打造高效、可维护的前端架构