一、总结
二、复习题目
1.C++中程序的模块叫什么?
答:函数。
2.下面的预处理器编译指令是做什么用的?
#include <iostream>
答:将头文件 iostream 添加到源代码中。
3.下面的语句是做什么用的?
using namespace std;
答:表明当前使用的命名空间是 std 。
4.什么语句可以打印 “ Hello world ” 并开启新的一行?
答:
cout << "Hello world" << endl;
5.什么语句可以创建名为 cheeses 的整数变量?
答:
int cheeses;
6.什么语句可以将值 32 赋给变量 cheeses ?
答:
cheeses = 32
7.什么语句可以将键盘输入的值读入变量 cheeses 中?
答:
cin >> cheeses;
8.什么语句可以用来打印 “ We have X varieties of cheese, ” ,其中 X 为变量 cheeses 的当前值。
答:
cout << "We have " << cheeses << " varieties of cheese," << endl;
9.下面的函数原型指出了关于函数的那些信息?
int froop(double t);
void rattle(int n);
int prune(void);
答:
- 第一个函数原型表明函数名为 froop ,返回值是整形 int ,参数是浮点数 double 。
- 第二个函数原型表明函数名为 rattle ,无返回值,参数是整形 int 。
- 第三个函数原型表明函数名为 prune ,返回值为整形 int ,无参数 。
10.定义函数时,什么情况下不必使用关键字 return ?
答:当函数无返回值时。
11.假设您编写的 main() 函数包含以下代码:
cout << "Please enter your PIN:";
而编译器指出 cout 是一个未知标识符。导致出现问题的原因是什么?指出三种修复这种问题 的方法。
答:
- 没有包含 iostream 头文件。
- 没有规定命名空间为 std 。
答案
三、编程练习
1.编写一个C++程序,它显示您的姓名和地址。
#include <iostream>
int main()
{
using namespace std;
cout << "Lin Mohan" << endl;
return 0;
}
2.编写一个 C++ 程序,它要求用户输入一个以 long 为单位的距离,然后将它转换为码(一 long 等于 220 码)。
#include <iostream>
int main()
{
using namespace std;
double longnum;
cout << "输入一个值 (以long为单位):" << endl;
cin >> longnum;
double yard;
yard = longnum * 220;
cout << longnum
<< "long = "
<< yard
<< "码";
}
3.编写一个 C++ 程序,它使用 3 个用户定义的函数(包括 main() ),并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用两次,该函数生成前两行;另一个函数也被调用两次,并生成其余的输出。
#include <iostream>
using namespace std;
void print_first(void);
void print_second(void);
int main()
{
print_first();
print_first();
print_second();
print_second();
}
void print_first(void)
{
cout << "Three blind mice" << endl;
}
void print_second(void)
{
cout << "See how ther run" << endl;
}
4.编写一个程序,让用户输入其年龄,然后显示该年龄包含多少个月,如下所示:
Enter your age: 29
You are age in months is 348.
#include <iostream>
using namespace std;
int main()
{
int age;
cout << "Enter your age: ";
cin >> age;
int month;
month = 12 * age;
cout << "You are age in months is "
<< month;
}
5.编写一个程序,其中的main()调用一个用户定义的函数(以摄氏温度值为参数,并返回相应的华氏温度值)。该程序按下面的格式要求用户输入摄氏温度值,并显示结果:
please enter a Celsius value: 20
20 degrees Celsius is 68 degrees Fahrenheit.
下面是转换公式:
华氏温度=1.8×摄氏温度+32.0
#include <iostream>
using namespace std;
int main()
{
double C;
cout << "please enter a Celsius value: ";
cin >> C;
double F;
F = 1.8 * C + 32.0;
cout << C
<< " degrees Celsius is "
<< F
<< " degrees Fahrenheit.";
}
6.编写一个程序,其main()调用一个用户定义的函数(以光年值为参数,并返回对应天文单位的值)。该程序按下面的格式要求用户输入光年值,并显示结果:
Enter the number of light years: 4.2
4.2 light years 265608 astronomical units.
天文单位是从地球到太阳的平均距离(约150000000公里或93000000英里),光年是光一年走的距离(约10万亿公里或6万亿英里)(除太阳外,最近的恒星大约离地球4.2光年)。请使用double类型(参见程序清单2.4),转换公式为:
1光年=63240天文单位
(与上一题类似,不再赘述。)
7.编写一个程序,要求用户输入小时数和分钟数。在main()函数中,将这两个值传递给一个void函数,后者以下面这样的格式显示这两个值:
Enter the number of hours: 9
Enter the number of minutes: 28
Time: 9 : 28
#include <iostream>
using namespace std;
int main()
{
int hour;
int minute;
cout << "Enter the number of hours: ";
cin >> hour;
cout << "Enter the number of minutes: ";
cin >> minute;
cout << "Time: " << hour << ":" << minute;
}
四、共勉
本篇博客是自我学习笔记,如果后续能够有人能够从中汲取到知识和收获,这也是我所希望的。如果有读者不懂或有问题的话,欢迎提出来,让我们一起讨论。同时,我将继续更新 C++ 入门学习系列笔记,敬请期待。
谢谢!
弩哥镇楼