Skip to content

Instantly share code, notes, and snippets.

@FreeFly19
Forked from greensma/Ex2.java
Last active October 23, 2016 22:16
Show Gist options
  • Save FreeFly19/5c4db5bb91bfaa40bd840e5fee0b5869 to your computer and use it in GitHub Desktop.
Save FreeFly19/5c4db5bb91bfaa40bd840e5fee0b5869 to your computer and use it in GitHub Desktop.
Home work #2 Иван Смаглюк
class Ex2 {
public static void main(String[] args) {
final int COUNT = 7;
String s = "I will adopt best practices";
for (int i = 0; i < COUNT; i++) {
System.out.println(s);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment