Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132939 views
License: OTHER
1
public class SimpleLoop {
2
public static void main(String[] args) {
3
for (int i = -5; i < 15; ++i) {
4
System.out.println(i + ": " + i * i);
5
}
6
7
}
8
}
9