Search:

Type: Posts; User: semicolon

Search: Search took 0.10 seconds.

  1. Replies
    8
    Views
    1,593

    Re: copying 2dim array into 1 dim array

    junky is right, change your holding array to int [] holdingArray = new int[4];
    then your transfer line should look like holdingArray[i]=poolArray[i][1];
    that way your taking a single int from the...
  2. Replies
    2
    Views
    1,869

    help with GUI password generator

    ignore most of the GUI stuff, used netbeans GUI builder

    /**
    *
    * @author semicolon
    */
    public class Password extends javax.swing.JFrame {
    static boolean...
  3. Replies
    2
    Views
    2,087

    Re: Partial message problem

    first!!!!!!
  4. Replies
    4
    Views
    2,535

    Re: HOW TO PARSE A TEXT FILE

    check for missing semicolons...
  5. Re: error related arrays outputting wront data...

    the problem is in the for loop, the program determines the percentile of each student by taking in his name and mark and finding the percentile by comaring his score to other classmates, if he is...
  6. Re: error related arrays outputting wront data...

    no the forum BB code wont indent it, here is the output
    austin: percentile: 100.0
    rick: percentile: 100.0
    sue: percentile: 60.0
    austin: percentile: 60.0
    rick: percentile: 60.0

    i expected ...
  7. error related arrays outputting wront data...

    I've debugged this program for an hour and a half now i figure its time to post here's my code
    package chapter13;
    import java.util.Scanner;
    /**
    * @author Austin Calkins
    */
    public class...
  8. Replies
    5
    Views
    1,412

    Re: whats wrong with my if statement

    im trying to compare the value set to ; to ; so from there i can set ; to the values set to : into ;/o im trying to kill the variable
  9. Replies
    5
    Views
    1,412

    Re: whats wrong with my if statement

    i was informed by a friend that that was the line of code i wanted, javas syntax is a bit different from c and c++ and i knew that was a problem with it substituting the symbal if (!repeat&&;==;)...
  10. Replies
    5
    Views
    1,412

    whats wrong with my if statement

    whats wrong with my if statement, the program wont run i started java last week and am still having trouble with the syntax
    package chapter13;
    import java.util.*;
    public class CountRepeats {
    ...
Results 1 to 10 of 10