Visualizzazione dei risultati da 1 a 4 su 4

Visualizzazione discussione

  1. #4
    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
        }
        
    }
    Ultima modifica di LeleFT; 09-01-2015 a 19:11 Motivo: Aggiunti i tag CODE

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.