标签:style color os io amp ios on sp
1.long long
VC中不能用,codeblocks中 可以
#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
long long a;
scanf("%lld",&a);
printf("%lld",a);
return 0;
}
2.__int64
VC中可以,codeblocks中可以
#include<iostream>
#include<stdio.h>
using namespace std;
int main()
{
__int64 a;
scanf("%I64d",&a);
printf("%I64d",a);
return 0;
}
long long 与 __int64,布布扣,bubuko.com
标签:style color os io amp ios on sp
原文地址:http://www.cnblogs.com/bofengyu/p/3910109.html