循环变量i++是什么,什么意思,这段代码什么意思
for(int i=5,j=5;i<5;i++,j- -){ System.out.println(i+“+”+j+“=”+(i+j)); }
i++意思就是i每次循环依次+1