C党:maxint+1=-2147483648

P1968 美元汇率

所以这题long long
by hjfzzm @ 2017-10-25 17:50:28


不是小数吗。 不用double的吗。。
by 恶灬心 @ 2018-10-18 16:54:13


C++党: ```cpp #include<iostream> //INT32_MAX 在这里定义 #include<stdint.h> using namespace std; int main() { long long maxintplus1=(long long)INT32_MAX+1; cout<<maxintplus1; } ``` 呵呵呵呵呵呵
by stevenzhc @ 2019-07-29 09:08:54


|