I am doing some assignment using Java and this is what I am supposed to do.
Given an integer X, you should read X lines, each line containing a string and 2 integer values x and y.
**Input**
2 <-- Read 2 lines
PLUS 10 30 <-- PLUS refers to adding 30 to 10
MINUS -6 20 <-- MINUS refers to minus 20 from -6
**Output**
40
-26
How do I store the value 40 and -26? I am currently using an array. Code below.
for(int i = 0; i < limit; i++)
{
String limitInput = sc.next();
x = sc.nextInt();
y = sc.nextInt();
if(limitInput.equals("PLUS"))
{
System.out.println(x+y);
limitArray[i] = x + y;
}
else if(limitInput.equals("MINUS"))
{
limitArray[i] = x - y;
}
else
{
limitArray[i] = x * y;
}
}
Is there a simpler approach like without the use of array?

SE 7– Maroun Maroun Jan 23 at 9:16