Вычислить у=(4+х)/х2 для любого значения х. округлить полученное значение к ближайшему целому. напечатать название старшей цифры полученного числа. c++ и нарисовать блок схему.
#include <iostream> #include <cmath> using namespace std;
int main() { double x = 0.f; int res = 0; cin >> x; int y = (4 + x) / pow(x, 2); cout << y << endl; while (y) { res = y % 10; y /= 10; } cout << res; }
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x = 0.f;
int res = 0;
cin >> x;
int y = (4 + x) / pow(x, 2);
cout << y << endl;
while (y)
{
res = y % 10;
y /= 10;
}
cout << res;
}