Cyclops numbers: Difference between revisions

m
→‎{{header|C++}}: fixing wrong output
m (→‎{{header|Raku}}: fix markup)
m (→‎{{header|C++}}: fixing wrong output)
Line 362:
 
=={{header|C++}}==
<<syntaxhighlight lang="c++">
#include <cstdio>
#include <cstdlib>
Line 400:
auto palindrome50 = firstPalindromeCyclopsPrimes(50);
 
std::cout << std::endl << "First 50 blindpalindromic prime cyclops numbers:" << std::endl;
print< int >(palindrome50, 10);
Line 545:
17053 17077 18047 18061 18077 18089 19013 19031 19051 19073
 
First 50 blindpalindromic prime cyclops numbers:
101 16061 31013 35053 38083 73037 74047 91019 94049 1120211
1150511 1160611 1180811 1190911 1250521 1280821 1360631 1390931 1490941 1520251
1,481

edits