JAVA中报错i cannot be resolved to a variable

hahaeeee2022-10-04 11:39:541条回答

JAVA中报错i cannot be resolved to a variable
import java.util.ArrayList;
public class Test5 {

public static void main(String[] args) {
ArrayList strs =new ArrayList();
strs.add("ABC");
strs.add("DEF");
strs.add("HIJ");
for(int i=strs.size()-1;i>=0; i--);
System.out.println(strs.get(i));
}}

怎么回事啊

已提交,审核后显示!提交回复

共1条回复
mingtian6666 共回答了15个问题 | 采纳率86.7%
没错啊,在我电脑上没有错误
1年前

相关推荐