✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include "pch.h"#include <iostream>using namespace std;
int main(){ float z=1021, p; if ((1021 <= z) && (z < 1701)) { p = z*0; } else if (z >= 1701) { p =z*1; } cout << p;}