Как и просили , 1 вариант. Решение через функцию.
Объяснение:
#include <iostream>
#include <math.h>
using namespace std;
double getfunction1(double t, double l)
{
return 3*pow(t,2) + 3*pow(l,5)+4.9;
}
int main()
int t, l;
cout << "Input numbers" << endl;
cin >> t >> l;
double r;
r=getfunction1(t, l);
cout << "r=" << r << endl;
Как и просили , 1 вариант. Решение через функцию.
Объяснение:
#include <iostream>
#include <math.h>
using namespace std;
double getfunction1(double t, double l)
{
return 3*pow(t,2) + 3*pow(l,5)+4.9;
}
int main()
{
int t, l;
cout << "Input numbers" << endl;
cin >> t >> l;
double r;
r=getfunction1(t, l);
cout << "r=" << r << endl;
}