Не выводит значения после "x в других случаях" #include
#include
using namespace std;
int main()
{
setlocale (0, "");
int x, y;
cout << "30 <= x <= 55 \n\n";
for (x=30; x<=55; x+=10)
{
cout << (x*x) + x << " ";
}
cout << "\n";
cout << "240 <= x <= 265 \n\n";
for (y=240; y<=265; y+=10)
{
cout << y + 1 << " ";
}
cout << "\n";
cout << "x в других случаях \n\n";
{
int z = 0;
while (z >= 0 && z < 30 && z > 55 && z < 240 && z > 265 && z<=300 )
{
++z;
cout << z << " ";
}
}
}