Skip to content

Instantly share code, notes, and snippets.

@d-kanazawa
Created January 18, 2015 15:39
Show Gist options
  • Save d-kanazawa/4faef80d826a4e52cc8a to your computer and use it in GitHub Desktop.
Save d-kanazawa/4faef80d826a4e52cc8a to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) throws Exception {
for(double i =1;i <=10; i++){
for(double j =1;j <=10;j++){
double a=i/j;
System.out.printf("%4.3f\t",a);
}
System.out.println("");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment