Search:

Type: Posts; User: SisyphusTheCoder

Search: Search took 0.25 seconds.

  1. Re: Help with finding a mistake/issue in this code

    System.out.println(twentyCents + " <=== 200 cent coin(s)");}
    int tenCents = coinsLeft / 10;
    coinsLeft = coinsLeft % 10;
    if (tenCents > 0){
    System.out.println(tenCents + " <===...
  2. Help with finding a mistake/issue in this code

    Hello guys! Need your help with something. I'm tasked to find an issue/mistake in this program that is supposed to take any amount entered in the console and exchange that amount of money for coins...
Results 1 to 2 of 2