Created
October 17, 2013 15:41
-
-
Save TheLouisHong/7027209 to your computer and use it in GitHub Desktop.
Another Martinos HW
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class PrintOneOverN { | |
public static void main(String[] args) { | |
int finalDinominator = 20; | |
for (double i = 1; i <= finalDinominator; i++) { | |
System.out.println(1d/i); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment