练习题
1.using namespace std;是做什么的?
答:引用名为std的命名空间。
2.打印HelloWorld并换行。
答:1)std::cout << "HelloWorld\n";
2)std:cout << "HelloWorld" << endl;
3)printf("HelloWorld\n");
3.什么情况下,函数中可以不使用return.
答:当函数返回值类型为void时。
4.让用户输入他的年龄,并显示这个年龄包含多少个月。
答:
#include <iostream>
int main(){
using namespace std;
int age = 0;
cout << "请输入您的年龄:";
cin >> age;
int months = age * 12;
cout << "此年龄包含" << months << "个月。" << endl;
return 0;
}