#include <iostream>
#include <cmath>
using namespace std;
int espaceconversion(long int);
int main()
{
long int lightyears;
long int x;
cout << "enter the lightyear number: ";
cout << endl;
cin >> lightyears;
1*astronomicalunit=15*10000000;
1*lightyears=1000000000000000000;
int astronomicalunit = espaceconversion(astronomicalunit);
cout << lightyears << " light years = ";
cout << astronomicalunit << " astronomical units. ";
system("pause");
return 0;
}
int espaceconversion(long int astronomicalunit)
{
return astronomicalunit*1000000000000000000/15*10000000;
}
5. Write a program that has main() call a user-defined function that takes a distance in
light years as an argument and then returns the distance in astronomical units. The program
should request the light year value as input from the user and display the result, as
shown in the following code:
Enter the number of light years: 4.2
4.2 light years = 265608 astronomical units.
An astronomical unit is the average distance from the earth to the sun (about
150,000,000 km or 93,000,000 miles), and a light year is the distance light travels in a
year (about 10 trillion kilometers or 6 trillion miles). (The nearest star after the sun is
about 4.2 light years away.) Use type double (as in Listing 2.4) and this conversion
factor:
1 light year = 63,240 astronomical units.
hello guys Im just making the exercises from the book and Ive found a good problems I just need a bit of help cause the coded that I did adobe is almost complete I just need to deterimine a long int variable if Im not wrong and do the last function something named double function right? well first I want to solve the problem with the main function so plz give me some help and I will an award.
awards: +2 of karma