cpp 里面定义的常数超过了long long范围

比如
const long long int c=18446744072003734121;
[Warning] this decimal constant is unsigned  only in ISO C90

解决方案:

const long long c=18446744072003734121ULL;

原文地址:https://www.cnblogs.com/noip/p/2316199.html