Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

musical /prog/ challange

Name: Anonymous 2010-09-22 14:03

Create an ordered list of fractions which product of the numerator and denominator equals a specific integer n.

ex: n=60
1/60, 2/30, 3/20, 4/15, 5/12, etc....

then do it with a list of integers.

If you are fancy you can also create a scale from the fractions you've got which best matches western tempered tuning (or any you prefer).

Name: Anonymous 2010-09-22 19:48

public class ProgChallenge {  public static void main(String[] args) {     int n = Integer.parseInt(args[0]);    for (int i=0; i <= n; i++) {      for (int j=0; j <= n; j++) {        if (i * j == n) {          System.out.print(i + "/" + j + " ");        }      }    }  }}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List