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;
}