编写一个C++程序,它显示您的姓名和地址
程序员文章站
2022-05-15 21:06:30
《c++ primer plus 第6版》
1、编写一个c++程序,它显示您的姓名和地址。
#include
using std::cout;
using std::endl;
int...
《c++ primer plus 第6版》
1、编写一个c++程序,它显示您的姓名和地址。
#include using std::cout; using std::endl; int main() { cout << "我的名字是:婷婷" << endl; cout << "我的家在山东省。"<< endl; return 0; }
2、编写一个c++程序,它要求用户输入一个以long为单位的距离,然后将它转换为码(一long 等于220码)。
#include using std::cout; using std::endl; using std::cin; int main() { int ll;//声明一个int类型的变量 cout << "请输入一个long单位的距离" << endl; cout << "请输入:"; //此处未添加控制符endl,输入的光标就在冒号的后面 cin >> ll;//使用cin对变量ll进行赋值 cout << ll << "long 等于 " << ll*220 << "码。" << endl; return 0; }
3、编写一个c++程序,它使用3个用户定义函数(包括main()),并生成下面的输出:
three blind mice three blind mice see how they run see how they run
其中一个函数要调用两次,该函数生成前两行,另一个函数也被调用两次,并生成其余的输出。
#include using std::cout; using std::endl; using std::cin; int first(); //声明一个函数 int next(); //声明一个函数 int main() { first(); //这条语句叫函数调用,main()叫调用函数,first()叫被调用函数 first(); next(); next(); } int first() { cout << "three blind mice" << endl; return 0; } int next() { cout << "see how they run" << endl; return 0; }
4、编写一个程序,让用户输入其年龄,然后显示该年龄包含多少个月。
#include using std::cout; using std::endl; using std::cin; int calculate(int); //声明一个带有参数的函数 int main() { int age; cout << "请输入您的年龄:"; cin >> age; cout << "您的年龄:" << age << "总共有" << calculate(age) << "个月" << endl; } int calculate(int age) //此处的age和main()中声明的age不是一个概念,后面会学到 { return age*12; }
上一篇: Intel CEO突然换人!为什么是他?
下一篇: 刘邦死后 吕雉缘何滥杀刘氏子孙呢