basically,i want to make a simple calculator
I want to take a string input from the keyboard, so if its a number or '.' it will add it to the String and if it is a char(+-*/) it will do the calculation.
So you first enter a 3
then a 4, which will make the string 34, it then converts it to a double then do a + then enter 3 then . then 34 so the string is 3.34 then you press = and it gives the answer. I have read in the value then
string newstring = value;
if (value.equals("0") |value.equals("1") etc
in = in + newstring;
}
then
try
{
setOperand(convert in to double)
if (flag == 1)
{
operand1 = convert in to double
result = operand1
flag = 0;
}// only does it for the first operand
getresult() which is if + then result + getOperand
catch
try
changes to char
for some reason when i just do 3= the result = 0, or 3 then . then 2 etc