Jump to content

airfrog19

Member
  • Posts

    124
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Gender
    Not Telling
  1. Everytime i launch The witcher 2, it would crash. Anyone know how to fix this?
  2. I'm thinking of getting this. Is it good?
  3. oh god no. That would take forever
  4. Everytime i press play GTAV nothing happens. Anybody else having the same problem?
  5. yea. doesnt work. need to fix it
  6. okay i'm not sure if this works so this is what i got: Fraction add = new Fraction(); int newden = den * secondFraction.den; add.den = newden; add.num = num * secondFraction.den + secondFraction.num * den;
  7. I'm trying to create a method to add two fractions together, but i''m not sure on how it would look like. This is how the method looks like: public class Fraction implements FractionInterface, Comparable<Fraction>{private int num; // Numerator private int den; // Denominator public Fraction(){// set fraction to default = 0/1num = 0; den = 1;} // end default constructor public FractionInterface add(FractionInterface secondFraction)//blahblah i'm suppose to use secondFraction, but not sure how though.
  8. like what does it mean to implement a method?
  9. i don't really have any code, but i'm building a fraction class and it has to return a double floating point value
  10. i'm using java. like what if it's public double toDouble?
×