Write a C++ program to read the value of an integer m and display the value of n is 1 when m is larger than 0, 0 when m is 0 and -1 when m is less than 0. Test Data : -5 Expected Output : The value of n = -1

Respuestas

Respuesta dada por: Alejok0
1

#include <iostream>

using namespace std;

int main(){

//Definimos la variable que ingresara el usuario

int num;

int otherNum;

//Solicitamos los datos

cout<<"Enter a number "<<endl;

cin>> num;

//Hacemos las validaciones

if(num == 0){

otherNum = 0;

}else{

if(num > 0){

otherNum =1;

}else{

otherNum = -1;

}

}

cout<<"The other number is: "<<otherNum<<endl;

return(0);

}

Nota:

Siéntete libre de preguntar por el funcionamiento.

Preguntas similares