Minor tweak to output when using alternate

This commit is contained in:
Stephen Seo 2020-11-10 15:03:17 +09:00
parent 3ec7e75ffd
commit f4b935d8c6

View file

@ -256,7 +256,10 @@ int main(int argc, char **argv) {
--argc; ++argv;
}
if(isAlt && max > 99) { max = 99; }
if(isAlt) {
printf("Using alternate Korean numbers, ");
if(max > 99) { max = 99; }
}
printf("Maximum value is set to %llu\n", max);
unsigned long long value;