Skip to content

Instantly share code, notes, and snippets.

@tyanp
Created January 18, 2015 15:15
Show Gist options
  • Save tyanp/0328cad26a5de1216aee to your computer and use it in GitHub Desktop.
Save tyanp/0328cad26a5de1216aee to your computer and use it in GitHub Desktop.
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