I want the result no:5 but I get no:23
public class Assignment3
{
public static void main(String args[])
{
String str1 = "2";
String str2 = "3";
System.out.println("Result:" + (str1+str2) );
}
}
|
|
If you want arithmetic to be done on integers, you need to tell your code to parse the values. Currently it's just using the string concatenation operator, because both of the operands ( Try this:
Note that when you're using "real" data (instead of hard-coded values which will definitely be valid here), |
|||||||||||
|
|
If you need an arithmetic
|
||||
|
|
|
You need to use EDIT: There is also |
|||
|
|
|
How about this?
|
|||
|
|
|
You are treating numerical strings as textual strings, but actually you need to parse the strings to Integer.
|
|||
|
|