Search:

Type: Posts; User: mysticCHEEZE

Search: Search took 0.36 seconds.

  1. Replies
    0
    Views
    1,254

    Scaling a graph in console

    I cannot for the life of me figure out how to scale this graph so that the graph in quadrant one shows. Please help :(

    import java.io.*;

    class Main
    {
    private static final int MAXROWS = 40;...
  2. Re: finding the amt of words and chars in a give file

    Ok I've redone the code but I have another issue. How do I read more than one line?

    import java.io.*;
    import java.util.*;
    import java.util.StringTokenizer;

    class Main
    {
    public static...
  3. Re: finding the amt of words and chars in a give file

    how would i go about putting the strings read into an array?
  4. finding the amt of words and chars in a give file

    So my code compiles fine, but I get a run-time error
    Exception in thread "main" java.util.NoSuchElementException
    at java.util.StringTokenizer.nextToken(StringTokenizer.java:332)
    ...
  5. Replies
    1
    Views
    972

    Boolean method issue

    I'm trying to program a boolean method that compares two doubles of an Object and if they are within 0.00001 of each other they are equal

    public boolean equals ( 2D that )
    {
    if (...
  6. Replies
    1
    Views
    1,018

    [SOLVED]Static Methods Problem

    Nvm solved :D
  7. Replies
    2
    Views
    1,192

    [SOLVED] Re: Static Method Help

    Now I get it Thanks!
  8. Replies
    2
    Views
    1,192

    [SOLVED] Static Method Help

    I'm trying to use a static method to find out how many years it takes to double an arbitrary amount of money so I used a dummy amount of money. The problem is, the code compiles but the code does not...
Results 1 to 8 of 8