risolto!
…
ecco come risulta
codice:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package paridispari;
import java.io.*;
/**
*
* @author filipporezzadore
*/
public class Paridispari {
/**
* @param args the command line arguments
*/
public static void main(String[] args)
throws Exception
{
int numero;
System.out.println("inserire il numero:");
BufferedReader input = new BufferedReader (new InputStreamReader(System.in));
String line = input.readLine();
numero = Integer.parseInt(line);
String tipo;
if ((numero%2 == 1))
tipo = "dispari";
else
tipo = "pari";
System.out.println("il numero digitato è:" + tipo);
// TODO code application logic here
}
}