Advertisement
brixium

Calcolatrice

Feb 17th, 2017
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.91 KB | None | 0 0
  1. package calcolatrice;
  2.  
  3. public class Calcolatrice {
  4.     char operazione;
  5.     int uno;
  6.     int due;
  7.     double ris;
  8.     String [] str;
  9.     public Calcolatrice(String s){
  10.         ris=0;
  11.         str = new String[3];
  12.         str = s.split(" ");
  13. /*
  14.         for(int i=0; i<str.length; i++){
  15.             System.out.print(str[i] + "\t");    
  16.         }
  17.         System.out.println();
  18. */
  19.         uno=Integer.parseInt(str[0]);
  20.         operazione = str[1].charAt(0);
  21.         due=Integer.parseInt(str[2]);
  22.     }
  23.     public double risultato(){
  24.         if(operazione=='+'){
  25.             ris=uno+due;
  26.         }else if(operazione=='-'){
  27.             ris=uno-due;
  28.         }else if(operazione=='*'){
  29.             ris=uno*due;
  30.         }else if(operazione=='/'){
  31.             ris=(double)uno/due;
  32.         }else{
  33.             System.err.println("Operazione non riconosciuta");
  34.         }
  35.         return this.ris;
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement