2024-03-15 13:42:49 +08:00

15 lines
210 B
C++

#include <stdio.h>
#define NUMBER 3
int main()
{
int a = 10;
#ifdef DEBUG
printf("111111111111\n");
#endif
for(int i=0; i<NUMBER; ++i)
{
printf("hello, GCC|||\n");
}
return 0;
}