Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 3 of 3

Thread: hello

  1. #1
    Junior Member
    Join Date
    Jul 2012
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default hello

    public class CubeSum implements Comparable<CubeSum> {
    private final int sum;
    private final int sum2;
    private final int i;
    private final int j;
    private final int a;
    private final int b;

    public CubeSum(int i, int j,int a, int b) {
    this.sum = i*i*i + j*j*j;
    this.i = i;
    this.j = j;
    this.a = a;
    this.b = b;
    this.sum2 = a * a * a + b * b * b;

    }
    public CubeSum(int w

    public int compareTo(CubeSum that) {
    if (this.sum < that.sum) return -1;
    if (this.sum < that.sum) return +1;
    return 0;
    }

    public String toString() {
    return sum + " = " + i + "^3" + " + " + j + "^3";
    }


    public static void main(String[] args) {

    int N = Integer.parseInt(args[0]);

    // initialize priority queue
    MinPQ<CubeSum> pq = new MinPQ<CubeSum>();
    pq.insert(new CubeSum(0,1);

    for (int i = 0,j = 1; i & j <= N; i+=2,j+=2) {
    pq.insert(new CubeSum(i, i,j,j,));
    if(i>0 && j>1)
    {
    pq.insert(new CubeSum(0,i,0,j);
    }
    }
    for(int i =0;i<N;i++)
    {
    for(int j=i+1;j<N;j++)
    {
    if(pq.sum[i] == pq.sum2[j])
    System.out.println("the sum is" + sum[i] + "and the value of i is" + pq.i + " and j is" + pq.j + "and a is" + pq.a + "and b is " + pq.b
    }
    }

    // find smallest sum, print it out, and update
    while (!pq.isEmpty()) {
    CubeSum s = pq.delMin();
    StdOut.println(s);

    }
    }

    }
    am now confused on how to use this program to find all distinct integers a, b, c, and d between 0 and 10^6 such that a3 + b3 = c3 + d3, e.g., 1729 = 9^3 + 10^3 = 1^3 + 12^3.
    this is the code i have devised which i think will work,but everytime i run it,i get an error message when i try to iterate through PQ to determine if sum = sum

  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: hello

    Thread moved from Member Introductions.
    Recommended Reading
    Forum Rules

  3. #3
    Member
    Join Date
    Feb 2012
    Posts
    173
    Thanks
    6
    Thanked 10 Times in 10 Posts

    Default Re: hello

    What are you confused about?