所以我试图为我的数组列表创建一个for循环但是我不断收到关于我的变量的初始化错误" F"在for循环中
。当我使用增强的for循环时,我的代码运行正常,但我想练习使用常规for循环。
我已经声明了我的变量wrigleys以确定数组的大小,但我觉得这可能是我的问题。
感谢您的帮助
import java.util.ArrayList;
import java.util.Collections;
public class Assignment1abdallahelgohary {
public static void main (String args[]) {
//create array
ArrayList<Integer> bob = new ArrayList<Integer>();
//insert/add elements
bob.add(2);
bob.add(1);
bob.add(4);
bob.add(3);
int wrigleys = bob.size();
//System.out.println(wrigleys);
//organize list
Collections.sort(bob);
//print out
for (int f; f < wrigleys; f ++) {
// for (int fruit: bob){
System.out.println(f);
}
}
}
答案 0 :(得分:0)
检查此代码。
```{r}
DT::datatable(datasets::euro.cross,
extensions = 'FixedColumns',
options = list(
dom = 't',
scrollX = TRUE,
fixedColumns = list(leftColumns = 2, rightColumns = 1))
)
```