Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132930 views
License: OTHER
1
public class QuizFor {
2
public static void main(String[] args) {
3
int i = 10;
4
for (; i < 10; i++) {
5
System.out.println(i);
6
}
7
System.out.println("end");
8
}
9
}
10
11