Search:

Type: Posts; User: ps3lover3

Search: Search took 0.12 seconds.

  1. Thread: Fractions

    by ps3lover3
    Replies
    5
    Views
    1,530

    Re: Fractions

    FractionClass:

    public class FractionClass {
    private int numerator;
    private int denominator;

    public FractionClass()
    {
    numerator = 1;
    denominator = 2;
  2. Thread: Fractions

    by ps3lover3
    Replies
    5
    Views
    1,530

    Re: Fractions

    FractionClass:

    public class FractionClass {
    private int numerator;
    private int denominator;

    public FractionClass()
    {
    numerator = 1;
    denominator = 2;
  3. Thread: Fractions

    by ps3lover3
    Replies
    5
    Views
    1,530

    Re: Fractions

    Assignment:
    You will create a class to represent fractions. The requirements below will establish how this class should be structured.
    Part 1
    * The class should store a numerator and denominator...
  4. Thread: Fractions

    by ps3lover3
    Replies
    5
    Views
    1,530

    Fractions

    I need help with an assignment I have for school. I'm a sophomore in high school in Computer Science 1. We use Eclipse (Java) for our programs.

    Here is the PDF for the assignment:
    Classes

    I...
Results 1 to 4 of 4