为什么输出的是 40?
public class disanzhang3{ public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three+=one;
System.out.println("three+=one ==>" +three);
为什么输出的是 40?
public class disanzhang3{ public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three+=one;
System.out.println("three+=one ==>" +three);
为什么输出的是 40?
2016-03-10
举报