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 = 0;
4
for (;;) {
5
System.out.println(i + " bottles of beer");
6
i++;
7
}
8
}
9
}
10
11