- 编写一个C++程序,它显示您的姓名和地址。
2.编写一个C+程序,它要求用广输入一个以 1ong 为单位的距离,然后将它转换为码(一long 等于220码)。
3.编写一个Ct+程序,它使用3个用户定义的函数(包括 main()),并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用两次,该函数生成前两行;另一个函数也被调用两次,并生成其余的输出。
4.编写一个程序,让用户输入其年龄,然后显示该年龄包含多少个月,如下所示:
Enter your age: 29
#include<iostream>
using namespace std;
int main()
{
int age;
cout << "Enter your age:" ;
cin >> age;
cout << age * 12 ;
system("pause");
return 0;
}
5.编写一个程序,其中的main()调用一个用户定义的两数 (以摄氏温度值为参数,并返回相应的华氏温度值)。该程序按下面的格式要求用户输入摄氏温度值,并显示结果:
Please enter a 摄氏value: 20
20 degrees 摄氏 is 68 degrees 华氏
下面是转换公式:
华氏温度 =1.8×摄氏温度+32.0
#include<iostream>
using namespace std;
double huashi(int sheshidu)
{
double huashidu;
huashidu = sheshidu * 1.8 + 32;
return huashidu;
}
int main()
{
int wendu;
double huashi1;
cout << "please enter a 摄氏 value:" ;
cin >> wendu;
huashi1 = huashi(wendu);
cout << wendu
<< " degrees 摄氏 is "
<< huashi1
<<" degrees 华氏" << endl;
system("pause");
return 0;
}
6.编写一个程序,其 main()调用一-个用广定义的西数(以l北年值为参数,并返回对应天文準过的值)。该程序按下面的格式要求用户输入光年值,并显示结果:
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