Search:

Type: Posts; User: TripleChickenJumpman

Search: Search took 0.20 seconds.

  1. [SOLVED] If Statements/Boolean Based Program Help

    Yep. I fixed it everything. Works Perfectly. Thanks for the help Greg! That was my first "big" program I did on my own and it turned out well. Friend request sent. SOLVED!
  2. [SOLVED] Re: [UNSOLVED] If Statements/Boolean Based Program Help

    public class Simulator {

    public static void main(String[] args) {
    int touchDown = 7;
    int fieldGoal = 3;
    int homeScore = 0;
    int awayScore = 0;
    String total = "Home: " + homeScore +...
  3. [SOLVED] Re: [UNSOLVED] If Statements/Boolean Based Program Help

    Sounds good but for your information I haven't got to methods yet so for now i'm going to try and avoid them while I can just for learning and comprehension purposes. But everything else like the...
  4. [SOLVED] Re: [UNSOLVED] If Statements/Boolean Based Program Help

    Will do.
  5. [SOLVED] Re: [UNSOLVED] If Statements/Boolean Based Program Help

    public class Simulator {

    public static void main(String[] args) {
    int touchDown = 7;
    int fieldGoal = 3;
    int homeScore = 0;
    int awayScore = 0;
    String total = "Home: " + homeScore +...
  6. [SOLVED] Re: [UNSOLVED] If Statements/Boolean Based Program Help

    Would you recommend a for loop? Because when I try a while loop it just goes insane forever.
  7. [SOLVED] Re: [UNSOLVED] If Statements/Boolean Based Program Help

    Thanks for the reply Greg. I've been researching about loops and I still cant seem to find out what's wrong with my code. Do I need to put the last two big loops at the beginning of the program?
  8. [SOLVED] While Statements/Boolean Based Program Help

    Hi, i'm new to coding with Java so keep that in mind. To practice I thought it would be a fun idea to create a super simple football simulator through the console that would just do a coin toss, then...
Results 1 to 8 of 8