This link should help: https://uhasct.com/insert-an-empty-row-between-each-row-of-data-in-excel/
I’m confused , don’t tell me your looking for a gf on Brainly
Answer:
1. Modified formulae for calculating tree height.
.
2. C++ program to calculate tree height.
#include<iostream>
#include<math.h>
using namespace std;
int
main ()
{
double treeHeight, shadowLenghth, angleElevation;
cout << "Please enter angle of elevation and shadow length" << endl;
cin >> angleElevation;
cin >> shadowLenghth;
//Modified formulae to calculate tree height.
treeHeight = tan (angleElevation) * shadowLenghth;
cout << "Height of tree is:" << treeHeight;
}
Output:
Please enter angle of elevation and shadow length
45
12
Height of tree is:19.4373
Explanation:
Since no programming language is mentioned, so solution is provided using C++.
In the above C++ program, first angle of elevation and length of shadow provided by user will be stored in variables angleElevation and shadowLength.
Then using the modified formalue height of tree will be calculated and stored in variable treeHeight. Final result is displayed to user.