#include<stdio.h> #include<conio.h> #include<windows.h> main() { int n; clrscr(); printf("programa valor de un Numero\n"); printf("ingrese el numero\n"); scanf("%d",&n); if (n>0) { printf("ESTE NUMERO ES positivo\n"); } else if(n<0) { printf("este numero es negativo\n"); } else { printf("ESTE NUMERO ES CERO"); } system("pause"); }