class forfortest{public static void main(String[] args){for(int x=1;x<=9;x++){for(int y...
![240](https://cdn2.jianshu.io/assets/default_avatar/4-3397163ecdb3855a0a4139c34a695885.jpg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
IP属地:广东
class forfortest{public static void main(String[] args){for(int x=1;x<=9;x++){for(int y...
循环语句有:while,do...whlie,for三种。 1.while语句while(条件表达式){执行语句(循环体);} 2.do...while语句do(执行语句)w...
位运算符的学习: <<:左移,越往左移数值越大;>>:右移,越往右移数值越大。例:A< >B:相等于A/(2的B次幂)(注意:除后取整舍去小数点后面数值)。 ^:异或,一个数...