Построить блок схему по программе #include "iostream"
#include "iomanip"
#include "cmath"

using namespace std;
int main()
{
double x, y;
cout << setw(10) << "x" << setw(10) << "y" << endl;
x = 0.5;
while (x<=5)
{
y = 2 * exp(4 * x) + atan(x);
cout << setw(10) << x << setw(10) << y << endl;
x = x + 2.1;
}
return 0;
}

ustinlox ustinlox    1   11.01.2021 21:17    2

Другие вопросы по теме Информатика