Search:

Type: Posts; User: sketch_flygirl

Search: Search took 0.08 seconds.

  1. Re: Help with class program!!! STUCK! Program not doing what I Want!!!

    the toString() method worked but all I am getting back is 0 from the arrays.

    Something wrong is happening between putting the occurrence count into the array and returning or using the array. I...
  2. Re: Help with class program!!! STUCK! Program not doing what I Want!!!

    The methods (other than main) are posed to count the occurrence of a char in the arrays I created. When i return the count of occurrence of a variable to the main, it reads the number. But when I...
  3. Re: Help with class program!!! STUCK! Program not doing what I Want!!!

    Made it short. :)>-
  4. [SOLVED] Re: Four arrays 32 line characters from text

    I got the loop to work!!! Thanks for the help!!!
  5. Help with class program!!! STUCK! Program not doing what I Want!!!

    I am having problems in getting my program to return an array that contains counters to my main method.

    I have four methods: main, countBase, findMost, and computeAvg.

    For findMost and...
  6. [SOLVED] Re: Four arrays 32 line characters from text

    Ok, I know the program underneath won't allow me to put the text line by line in order.


    //Read .txt file
    File inFile = new File ("seq.txt");
    Scanner in = new...
  7. [SOLVED] Re: Four arrays 32 line characters from text

    I wonder will this work?


    //Read .txt file
    File inFile = new File ("seq.txt");
    Scanner in = new Scanner(inFile);

    while(in.hasNext())
    {
    arrayDNA1[counter] = in.nextChar();
  8. [SOLVED] Re: Four arrays 32 line characters from text

    I really don't understand. I for some reason am good at arrays if input but reading from text...I have no idea what the heck I am doing. I still have to analysis the arrays in other methods.
  9. [SOLVED] Re: Four arrays 32 line characters from text

    So it will look somethin' like this right?


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

    public class monroylab6
    {
    //Read scanner for public class
    static Scanner console = new...
  10. [SOLVED] Four arrays 32 line characters from text

    I am having a problem...I get arrays but when I have to read a line by line text with letters I don't understand how to place the letters in four different array.

    Import java.util*;
    import...
  11. Replies
    2
    Views
    3,362

    Re: Sudoku coding help...please

    thanks! XD
  12. Replies
    2
    Views
    3,362

    Sudoku coding help...please

    called Sudoku
    Write the pseudocode of the algorithm that does the following:
    * it takes a 9x9 matrix filled with numbers from 0 to 9: 0s stand for a missing sudoku number (a number to be...
  13. Re: Calling a void method into a static void main within same class

    Thank you, it worked! XD
  14. Calling a void method into a static void main within same class

    I am new to java programming and have bad programming writing skills and in great urge of the need of help.

    I have a program with 6 methods, one method being the static void main


    public class...
Results 1 to 14 of 14