study-games

A collection of static games for Computer Science education

This project is maintained by TheRenegadeCoder

Control Flow for 400

The following loop runs this many times:

String s = "jeopardy";
for (int i = 0; i < s.length(); i++) {
  System.out.print(s.charAt(i));
}