Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to use StringTokenizer, which I have, but something is wrong. I'm having some trouble finding out where. Here is my code so far:

import java.util.*; 

public class Calculator
{ 
    private StringTokenizer tokenizer; 
    private String token; 


    public Calculator(String line) // Constructor 
    { 
        tokenizer = new StringTokenizer(line); 
        token = tokenizer.nextToken(); 
    } 

    public double Evaluate() 
    { 
        return Expression(); 
    } 

    private double Primary() 
    { 
        double result; 

        if(token.equals("(")) 
        { 
            token = tokenizer.nextToken(); 
            result = Expression(); 
        } 
        else 
        { 
            result = Double.valueOf(token).doubleValue(); 
        } 

        token = tokenizer.nextToken(); 
        return result; 
    } 

    private double Term() 
    { 
        double nextValue; 
        double result; 

        result = Primary(); 

        while(token.equals("*")) 
        { 
            token = tokenizer.nextToken(); 
            nextValue = Primary(); 
            result *= nextValue; 
        } 

        while(token.equals("/")) 
        { 
            token = tokenizer.nextToken(); 
            nextValue = Primary(); 
            result /= nextValue; 
        }   
        return result;
    } 

    private double Expression() 
    { 
        double nextValue; 
        double result; 

        result = Term(); 

        while(token.equals("+")) 
        {           
            token = tokenizer.nextToken(); 
            nextValue = Term(); 
            result += nextValue; 
        } 

        while(token.equals("-")) 
        { 
            token = tokenizer.nextToken(); 
            nextValue = Term(); 
            result -= nextValue; 
        } 

        return result; 
     } 

     public static void main (String[] args)
     { 
            Scanner input = new Scanner(System.in);            
            String line; 

            String choice = "y";
            while(choice.equalsIgnoreCase("y")) 
            { 
                System.out.print("Enter an expression: "); 
                line = input.next(); 

                if(line.length() == 0) 
                { 
                    break; 
                }   
                if(choice.equalsIgnoreCase("n"))
                {
                    System.out.println("Bye.");
                    System.exit(0);
                }

             Calculator expn = new Calculator(line); 
             System.out.println("Result is " + expn.Evaluate()); 
         } 
       } 
   } 

This is a sample output it should be:

Enter an expression: 4.45 + 1.0

Result is 5.45

Try again? y

Enter an expression: 2.3 - 10.77

Result is -8.47

Try again? y

Enter an expression: 5.3

Input error

Try again? y

Enter an expression: 5.4 * 2.7.7

Input error

Try again? y

Enter an expression: 6.0 + * 3.0

Input error

Try Again? n

Bye.

Thanks in advance for the help.

share|improve this question
4  
What's your question? – Isaac Truett Apr 4 '11 at 20:17
1  
Based on your program output, I'd say it's working properly. What are you expecting? – Speck Apr 4 '11 at 20:31
It looks like homework--although he should have tagged it so, you might want to give the guy a little bit of a break. – Bill K Apr 4 '11 at 20:32
@Bill I'm all for compassion and understanding, but this isn't the proper platform for "here's my code - help me!" posts. @Roger, have you read the FAQ? – Isaac Truett Apr 4 '11 at 20:36
@Bill, who are you addressing? I mean, who is being harsh to the OP? Both Isaac and Speck ask valid questions, IMO. – Bart Kiers Apr 4 '11 at 20:38
show 2 more comments

closed as too localized by Bart Kiers, Bala R, Robert Harvey Apr 4 '11 at 21:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

Based on your code, your main problem is that you are using the default Scanner implementation. By default, Scanner will split the input by white-space characters. As a result, the input line 4.45 + 1.0 will result in input.next() returning the simple value of 4.45 rather than the expected 4.45 + 1.0. To correct this problem, you should change your Scanner initialization code to the following code which defines how the input text should be delimeted:

Scanner input = new Scanner(System.in);
input.useDelimiter("\n");

You may want to use System.getProperty("line.separator") rather than \n, as in the above example, as it would allow the code to support multiple environments.

On a side note, you may want to add checks for tokenizer.hasMoreElements(), otherwise you will receive all kinds of errors if you enter incomplete text such as 4.45 +.

Hope this helps.

share|improve this answer

The Scanner comment is good, do that. In addition, in you main loop you never assign "choice" to anything, so you'll keep looping forever - fix that. Otherwise, code looks good.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.