/*编写一个程序,其main()调用一个用户定义的函数(以光年值为参数,并返回对应天文单位的值).该程序按下面的格
式要求用户输入光年值,并显示结果:Enterthenumberoflightyears:4.24.2lightyears=265608astronomicalunits.天文单位是从地球到太阳
的平均距离(约150,000,000千米活93,000,000//英里),光年是光一年走的距离(约10万亿千米或6万亿英里.除太阳
外,最近的恒星大约离地球4.2光年).请使用double类型(参见程序清单2.4),转换公式为:1光年=63,240天文单位 */
#include <iostream>
using namespace std;
double LY_convert_AU(double);
int main ()
{
double LY;
double AU;
cout<<"Enter the number of light years: ";
cin>>LY;
AU=LY_convert_AU(LY);
cout<<LY<<" light years = "<<AU<<" astronomical units."<<endl;
return 0;
}
double LY_convert_AU(double n)
{
return n*63240;
}