MP2 moment

This commit is contained in:
2025-10-19 21:30:55 -05:00
parent 72ced35581
commit afda8bebc9

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));