close
符號 說明
+= | x+=y 相當於x=x+y |
-= | x-=y 相當於x=x-y |
*= | x*=y 相當於x=x*y |
/= | x/=y 相當於x=x/y |
%= | x%=y 相當於x=x%y |
class A{
public static void main(String[]args){
int i=1;
i+=2;
System.out.println(i);
}
}
//3
文章標籤
全站熱搜