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 a la pregunta
Contestado por
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.
Otras preguntas
Religión,
hace 4 meses
Filosofía,
hace 4 meses
Castellano,
hace 4 meses
Matemáticas,
hace 6 meses
Ciencias Sociales,
hace 11 meses
Inglés,
hace 11 meses
Biología,
hace 11 meses