-
-
Save d-kanazawa/4faef80d826a4e52cc8a 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 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