Created
January 18, 2015 15:15
-
-
Save tyanp/0328cad26a5de1216aee to your computer and use it in GitHub Desktop.
This file contains hidden or 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 bbb { | |
public static void main (String[] args) { | |
for(int i=1; i<=10; i++){ | |
for(int j=1; j<=10; j++){ | |
System.out.printf("%1.3f", (double)i/j); | |
} | |
System.out.println(""); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment