CDOJ 1272 Final Pan's prime numbers

有些问题,不做实践与猜测,可能一辈子也想不出答案,例如这题。

#include<stdio.h>
#include<math.h>

long long x;

int main()
{
    while(~scanf("%lld",&x)){
            if(x<7) printf("-1
");
            else printf("7
");
    }
    return 0;
}
原文地址:https://www.cnblogs.com/zufezzt/p/5178631.html