Відповідь:
#include <iostream>
#include <math.h>
using namespace std;
int main(){
float x = 0.5,h = 0.3;
for(x; x <= 11;){
float function1 = (sin(x)) / pow(x,2);
float function2 = (cos(x)) / x;
cout << "y = f(x) = " << function1 << " ";
cout << "z = f(x) = " << function2 << endl;
x += h;
}
return 0;
Пояснення:
Відповідь:
#include <iostream>
#include <math.h>
using namespace std;
int main(){
float x = 0.5,h = 0.3;
for(x; x <= 11;){
float function1 = (sin(x)) / pow(x,2);
float function2 = (cos(x)) / x;
cout << "y = f(x) = " << function1 << " ";
cout << "z = f(x) = " << function2 << endl;
x += h;
}
return 0;
}
Пояснення: