标签: java
如何在Java(或BlueJ)中添加Ints或Floats?我不是那个意思:
x=2; y=3; System.out.println(y+x);
然后来了5,我的意思是这样:
x=2; y=3; c=y+x; System.out.println(c);
这里应该出来32.不要像在Math中那样添加,而是将这些东西组合在一个新变量中。 非常感谢提前!
答案 0 :(得分:1)
使用String:
String
String c = "" + x + y;