0*20是200?
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
//0*20后再赋值
int D = three *= two;
System.out.println(D);
}
}public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
//0*20后再赋值
int D = three *= two;
System.out.println(D);
}
}2021-09-15
举报