#include <stdio.h>
#include <stdbool.h>
bool is_palindrome(size_t num) {
size_t invert = 0, target = num;
while(target) {
invert = invert * 10 + target % 10;
target /= 10;
}
return invert == num;
}
int main(void) {
size_t a = 999, b = 999;
while(1) {
size_t max = a * b;
if(is_palindrome(max)) {
printf("%lu * %lu = %lu\n", a, b, max);
break;
}
if(a == b) --a;
else --b;
}
return 0;
}
$ ./main.exe
836 * 836 = 698896
#include <stdio.h>
#include <stdbool.h>
bool is_palindrome(size_t num) {
size_t invert = 0, target = num;
while(target) {
invert = invert * 10 + target % 10;
target /= 10;
}
return invert == num;
}
int main(void) {
size_t a = 999, b = 999;
while(1) {
size_t max = a * b;
if(is_palindrome(max)) {
printf("%lu * %lu = %lu\n", a, b, max);
break;
}
//if(a == b) --a;
//else --b;
if(--b < 100) {
b = 999;
--a;
}
}
return 0;
}
$ ./main
995 * 583 = 580085
|