MP2 moment

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2022-09-26 11:26:39 -05:00
parent 5815fa35f3
commit 5812c3f298

View File

@ -35,7 +35,7 @@ public class CheckIBSN_10 {
digit9 = inputISBN / 1 % 10;
//Print digits for debugging
if (debug == true)
if (debug)
{
System.out.println("inputISBN: " + inputISBN);
System.out.println("ISBN split into 9 digits: " + (digit1) + " " + (digit2) + " " + (digit3) + " " + (digit4) + " " + (digit5) + " " + (digit6) + " " + (digit7) + " " + (digit8) + " " + (digit9));