Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package calcolatrice;
- public class Calcolatrice {
- char operazione;
- int uno;
- int due;
- double ris;
- String [] str;
- public Calcolatrice(String s){
- ris=0;
- str = new String[3];
- str = s.split(" ");
- /*
- for(int i=0; i<str.length; i++){
- System.out.print(str[i] + "\t");
- }
- System.out.println();
- */
- uno=Integer.parseInt(str[0]);
- operazione = str[1].charAt(0);
- due=Integer.parseInt(str[2]);
- }
- public double risultato(){
- if(operazione=='+'){
- ris=uno+due;
- }else if(operazione=='-'){
- ris=uno-due;
- }else if(operazione=='*'){
- ris=uno*due;
- }else if(operazione=='/'){
- ris=(double)uno/due;
- }else{
- System.err.println("Operazione non riconosciuta");
- }
- return this.ris;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement