c++primer plus 编程练习题2

6.编写一个程序,其main()调用一个用户定义的函数(以光年值为参数,并返回对应天文单位的值)

改程序按下面的格式要求用户输入光年的值,并显示结果:

Enter the number of light years:42

42 light years =265608 astronomical units.

天文单位是从地球到太阳的距离(约150000000公里或93000000英里,光年是光一年走的距离(约10万亿公里或6万亿英里)

(除太阳外,最近的恒星大约离地球4.2光年)。请使用double类型,转换公式为:一光年等于63240天文单位

#include<iostream>
double turnast(double);
int main()
{
using namespace std;
double lightyears;
cout<<"Enter the number of light years:\n";
cin>>lightyears;
cout<<lightyears<<" light years = "<<turnast(lightyears)<<"astronomical units.";
}
double turnast(double n)
{
return n*63240;
}

编写一个程序,要求用户输入小时数和分钟数。在main()函数中,将这两个值传递给一个void函数,后者以下面这样的格式显示这两个值:

Enter the number of hours:9

Enter the number of minutes:28

Time:9:28

#include<iostream>
using namespace std;
void printtime(int,int);
int main()
{
int hours;
int minutes;
cout<<"Enter the number of hours:";
cin>>hours;
cout<<"Enter the number of minutes:";
cin>>minutes;
printtime(hours,minutes);
}
void printtime(int n,int m)
{
cout<<"Time:"<<n<<":"<<m<<endl;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值