第二章课后题

一 复习题

1 函数

2 将头文件内容添加到源代码中

3 using是预编译器指令,使用std命名空间

4 cout << "Hello,World!" << endl;

5 int chesses;

6 int chesses = 32;

7 cin >> chesses;

8 cout << "We have " << chesses <<" varieties of chesses," << endl;

9

​ 1)函数名叫froop 带有一个参数 参数类型是double 并且函数返回是一个整型值

​ 2)函数名是rattle 带有一个参数 参数类型是int 函数无返回值

​ 3)函数名是prune 无参数 函数返回值是整型

10 当函数没有返回值时,可以不用定义return

11

​ 1)using namespace std;

​ 2)using std::cout

​ 3)std::cout

二 编程题

1

c++ 复制代码
#include <iostream>
using namespace std;
int main()
{
	cout << "姓名" << endl;
	cout << "地址" << endl;
	return 0;
}

2

c++ 复制代码
#include <iostream>
using namespace std;
int main()
{
	double distance;
	cout << "Enter the distance (in long):";
	cin >> distance;
	cout << "The distance " << distance << "long" << " equals "
		<< 220 * distance << " yard." << endl;
	return 0;
}

3

c++ 复制代码
#include <iostream>
using namespace std;
void hanshu1();
void hanshu2();
int main()
{
	hanshu1();
	hanshu1();
	hanshu2();
	hanshu2();
	return 0;
}

void hanshu1()
{
	cout << "Three bilnd mice" << endl;
}

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

4

c++ 复制代码
#include <iostream>
using namespace std;
int main()
{
	int age;
	cout << "Enter your age:";
	cin >> age;
	cout << "包含 " << age * 12 << " 个月" << endl;
	return 0;
}

5

c++ 复制代码
#include <iostream>
using namespace std;
void huashi(double n);
int main()
{
	double sheshi;
	cin >> sheshi;
	huashi(sheshi);
	return 0;
}

void huashi(double n)
{
	cout << "华氏温度: " << 1.8 * n + 32.0 << endl;
}

6

C++ 复制代码
#include <iostream>
using namespace std;
void guangnian(double n);
int main()
{
	double years;
	cout << "Enter the number of light years: ";
	cin >> years;
	guangnian(years);
	return 0;
}
void guangnian(double n)
{
	cout << n << " light years = " << n * 63240 << " astronomical units.";
}

7

c++ 复制代码
#include <iostream>
using namespace std;
void time(int n, int m);
int main()
{
	int j, k;
	cout << "Enter the number of hours: ";
	cin >> j;
	cout << "Enter the number of minutes: ";
	cin >> k;
	time(j, k);
	return 0;
}

void time(int n, int m)
{
	cout << "Time: " << n << ":" << m << endl;
}
相关推荐
charade3127 小时前
【C语言】内存分配的理解
c语言·开发语言·c++
雾削木10 小时前
mAh 与 Wh:电量单位的深度解析
开发语言·c++·单片机·嵌入式硬件·算法·电脑
Ethon_王11 小时前
走进Qt--工程文件解析与构建系统
c++·qt
工藤新一¹12 小时前
C++/SDL进阶游戏开发 —— 双人塔防游戏(代号:村庄保卫战 13)
c++·游戏·游戏引擎·毕业设计·sdl·c++游戏开发·渲染库
让我们一起加油好吗13 小时前
【C++】类和对象(上)
开发语言·c++·visualstudio·面向对象
好想有猫猫13 小时前
【Redis】服务端高并发分布式结构演进之路
数据库·c++·redis·分布式·缓存
不是杠杠13 小时前
驼峰命名法(Camel Case)与匈牙利命名法(Hungarian Notation)详解
c++
Epiphany.55613 小时前
基于c++的LCA倍增法实现
c++·算法·深度优先
落羽的落羽13 小时前
【落羽的落羽 C++】vector
c++
newki13 小时前
学习笔记,Linux虚拟机中C/C++的编译相关流程步骤
c语言·c++