package HspLearning;
public class For02 {
public static void main(String[] args) {
int count = 3;
for (int i = 0,j= 0;i < count;i++,j+= 2){
System.out.println("i="+i+" "+"j="+j);
}
}
}
package HspLearning;
public class For02 {
public static void main(String[] args) {
int count = 3;
for (int i = 0,j= 0;i < count;i++,j+= 2){
System.out.println("i="+i+" "+"j="+j);
}
}
}
本文标题:for语句输入
本文链接:https://www.haomeiwen.com/subject/fpeeoltx.html
网友评论