14 lines
249 B
C++
14 lines
249 B
C++
#include <iostream>
|
|
#include "distance.h"
|
|
using namespace std;
|
|
|
|
int main() {
|
|
double hauteur;
|
|
double rayonPlanete;
|
|
double horizon;
|
|
|
|
cin >> hauteur >> rayonPlanete;
|
|
|
|
horizon = Distance(hauteur, rayonPlanete);
|
|
cout << horizon;
|
|
} |