💻 Hacer un programa que permita ingresar un número entero y muestre si es un número positivo [ Mayor que Cero], negativo [Menor que cero ] o nulo [ Igual a Cero ].
* PSeInt :
Algoritmo full_codigos
Definir num como Entero;
Escribir Sin Saltar "INGRESE NÚMERO : ";
Leer num;
SI (num == 0) Entonces
Escribir "NÚMERO NULO o CERO";
SiNo
SI (num > 0) Entonces
Escribir "NÚMERO POSITIVO";
SiNo
Escribir "NÚMERO NEGATIVO";
FinSi
FinSi
FinAlgoritmo
* Python :
# MOSTRAR SI ES POSITIVO, NEGATIVO O NULO
num = int(input("INGRESE NÚMERO : "))
if num == 0:
print("NÚMERO NULO o CERO")
elif num > 0 :
print("NÚMERO POSITIVO")
else:
print("NÚMERO NEGATIVO")
* Lenguaje C :
#include<stdio.h>
int main() {
int num;
printf("NUMERO POSITIVO, NEGATIVO O NULO.\n\n");
printf("INGRESE NUMERO : ");
scanf("%d",&num);
if(num == 0){
printf("\nNUMERO NULO o CERO");
}else{
if(num > 0){
printf("\nNUMERO POSITIVO");
}else{
printf("\nNUMERO NEGATIVO");
}
}
return 0;
}
* C++ :
#include<iostream>
using namespace std;
int main() {
int num;
cout << "INGRESE NUMERO : ";
cin >> num;
if(num == 0){
cout << "NUMERO NULO o CERO" << endl;
}else{
if(num > 0){
cout << "NUMERO POSITIVO" << endl;
}else{
cout << "NUMERO NEGATIVO" << endl;
}
}
return 0;
}
* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
class mayor_de_3_numeros
{
static void Main(string[] args)
{
Console.ReadLine();
}
}
}
* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class positivo_negativo_nulo {
public static void main(String[] args) {
int num;
Scanner ingreso=new Scanner(System.in);
System.out.print("INGRESE NUMERO : ");
num = Integer.parseInt(ingreso.next());
if(num == 0){
System.out.println("NUMERO NULO o CERO");
}else{
if(num > 0){
System.out.println("NUMERO POSITIVO");
}else{
System.out.println("NUMERO NEGATIVO");
}
}
}
}