#include<iostream>
#include<cmath>
using namespace std;
int main()
{
setlocale(LC_ALL, "Ru");
cout << "1 - while" << endl;
cout << "2 - do while" << endl;
cout << "3 - for par" << endl;
cout << "4 - for c" << endl;
int menu;
cout << "Выберете вариант решения" << endl;
cin >> menu;
if (menu == 1) {
float xn, xk,x, y, dx;
int m;
const float pi = 3.14;
xn = 0;
xk = pi / 2;
m = 10;
dx = (xk - xn) / m;
while (x < xk) // говорит что х - неинициализированная локальная переменная
{
y = x - sin(x);
cout << "y=" << y << "x=" <<x << endl;
x = x + dx;