Search:

Type: Posts; User: sketch_flygirl

Search: Search took 0.08 seconds.

  1. [SOLVED] Re: Four arrays 32 line characters from text

    I got the loop to work!!! Thanks for the help!!!
  2. [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...
  3. [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();
  4. [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.
  5. [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...
  6. [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...
Results 1 to 6 of 6