Recent content by copelandtml

  1. C

    Debugging..wondering why this will run sometimes but errors the other times

    OR statement is now gone and still works great. Thanks again, I'm new to this still as you can tell. More of just a logic error on my part and not totally understanding the concept at hand yet, but thanks for all the info. Take care!
  2. C

    Debugging..wondering why this will run sometimes but errors the other times

    Thanks for the quick reply, and the brief explanation on Math.random and arrays, I fixed the two lines where I was using Math.random and corrected the two for loops. And then noticed my if statement was wrong if(cardsArray[index] != cardsArray[index + 1]) I changed it too if(cardsArray[index]...
  3. C

    Debugging..wondering why this will run sometimes but errors the other times

    public class C_C_ShuffleCards { public static void main(String[] args) { //program name System.out.println("The Cards Shuffler"); //What the program does System.out.println("\nThis program creates a deck of 52 cards."); System.out.println("The cards are represented by the values...
  4. C

    Java if-else question

    alright, thanks again....another quick question if you don't mind. when creating variables is it good to initialize them to something (0 or "") such as: int number = 0; String name = "";
  5. C

    Java if-else question

    Ok, thanks for the reply...kinda feel like an idiot now lol but I guess now I know for next time. Is that only for double and boolean variables or is that for all variables?
  6. C

    Java if-else question

    I'm trying to code a program to calculate the average rainfalls over a year. This is my code: import java.util.Scanner; public class C_C_PartC { public static void main(String[]args) { //title System.out.println("**This is Craig Copeland's Rainfall Averager**"); System.out.println("This...
  7. C

    InstallShield ERROR

    It has something to do with the home premium edition, if I upgrade to the professional version it should work. According to my schools IT department anyways. Whats the best process for doing that without loosing anything on my computer?
  8. C

    InstallShield ERROR

    Yes, admin mode has already been tried, with no success either. Other programs will install though, I've successfully installed other programs after running into this error.
  9. C

    InstallShield ERROR

    It's Windows 7 Home Premium, and the software I was trying to install was Oracle Database 10g.
  10. C

    InstallShield ERROR

    InstallShield ERROR 1628: Failed to complete installation....I get this error when I'm trying to install a program for school. I have Windows 7 running on the computer. I've read a few things online and some said to go into a folder in admin tools called local security settings but it's not...
  11. C

    Java Programming Help

    Thanks for the help, I haven't used the arraylists yet still in the early stages of learning java and programming. Any useful sites you could refer me to? Or any tips that helped you learn. Thanks again!
  12. C

    Java Programming Help

    Yes, I want the variables to hold the data the user inputs. Also can you tell me what is wrong with this line of code awayFromTheNumberArray = JellyBeansHelper.findLowestDifference(playerGuess, jeallyBeans); This is the error I am getting when I run my program Jellybean Guess Game! You...
  13. C

    Java Programming Help

    How would I go about initializing the following variables String[] playerNames; int[] playerGuess; int awayFromTheNumberArray; so that they will accept the user input.
  14. C

    VMWare troubles

    VMware Player cannot open one of the virtual disks needed by this VM because it is larger than the maximum file size supported by the host file system. Some remote file systems do not support files larger than 2 GB, even though the file system on the server might. Cannot open the disk...
  15. C

    Question

    Yeah, I've been learning some of the commands in the prompt, prof kinda jumped a few steps. I'm just playing around trying to figure stuff out, the code needs to be perfect to run, gets a little frustrating. The following are the other tasks I'm trying to figure out. 1------At the command...
Back
Top Bottom