Pedir un numero e indicar si es positivo o negativo (códigos en java y javascript)
//Pedir un numero e indicar si es positivo o negativo
package practica2;
import java.util.Scanner;
public class Practica2{
public static void main(String[]args){
Scanner teclado=new Scanner(System.in);
int a;
System.out.println("Ingrese un numero");
a=teclado.nextInt();
if(a>0)
System.out.println("es positivo");
else
System.out.println("es negativo");
}
}
//javascript lo pegan en block de notas y lo guardan en .html y lo abren con un explorador yo uso el crhome
<html>
<head>
<title>Pedir un numero e indicar si es positivo o negativo</title>
<meta charset="UTF-8">
</head>
<body>
<script>
var a=prompt("ingrese un numero");
if(a>0)
alert("es positivo");
else
alert("es negativo");
</script>
</body>
</html>