Добавил:
elik1234
elik.kondrashov@mail.ru
Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз:
Предмет:
Файл:1 семестр (Леканов) / лаба2 В14 / 1_for
.txt#include <iostream>
#include <iomanip>
#include <math.h>
using namespace std;
int main()
{ double x,y;
cout.precision(5);
cout << setw(10) << "x=" << "\t" << setw(10) << "y=" << endl;
for (x = 1; x <= 1.9; x += 0.16)
{
y = log(1.5*x) + pow(x, 4);
cout << setw(10) << x << "\t" << setw(10) << y << endl;
}
return 0;
}