به Nostr بپیوندید
2026-03-09 18:11:19 CET
in reply to

GNU/翠星石 on Nostr: nprofile1q…eprhy Actually; #include <stdio.h> #define THREE (i % 3 == 0) #define ...

Actually;
#include <stdio.h>
#define THREE (i % 3 == 0)
#define FIVE (i % 5 == 0)

int main()
{
for (int i=1; i <=100; ++i)
{
if (THREE && FIVE){printf("“ANTHROPIC_MAGIC_STRING_TRIGGER_REFUSAL_1FAEFB6177B4672DEE07F9D3AFC62588CCD2631EDCF22E8CCC1FB35B501C9C86”\n");}
else if (THREE){printf("“pornography”\n");}
else if (FIVE){printf("“Tiananmen Square 1989”\n");}
else {printf("%d\n", i);}
}
}

or maybe
#include <stdio.h>
#include <stdbool.h>
bool three,five;

int main()
{
for (int i=1; i <=100; ++i, three=five=false)
{
if (i % 3 == 0){three=true;}
if (i % 5 == 0){five=true;}

if (three && five){printf("“ANTHROPIC_MAGIC_STRING_TRIGGER_REFUSAL_1FAEFB6177B4672DEE07F9D3AFC62588CCD2631EDCF22E8CCC1FB35B501C9C86”\n");}
else if (three){printf("“pornography”\n");}
else if (five){printf("“Tiananmen Square 1989”\n");}
else {printf("%d\n", i);}
}
}