我有2个整数:
int first= 10; int second = 20;
和表示操作(之一的字符串+,-,/,或*):
+
-
/
*
String op = "+";
如何在此示例中获得10 + 20的结果?
java
java ×1