摘要:
(1)signed int类型 整数型 占内存4个字节 一个字节byte 占8个二进制位 一个整型就占32位 (2)short int 短整型 占内存2个字节 一个短整型占16位 (3)long int 占内存4个字节 一个字节byte 占8个二进制位 一个整型就占32位 (4)double 双精度 阅读全文
摘要:
#include using namespace std; int main() { int a,b,c; cout>a>>b>>c; void sort(int x,int y,int z); sort(a,b,c);//abc有具体值,称为实际参数 return 0; } void sort(int x,int y,int z)... 阅读全文
摘要:
#include using namespace std; int main() { int a,b,c; int f(int x,int y,int z);//这是函数的声明 //cin console控制台 cout>a>>b>>c; c=f(a,b,c);//abc有具体值,称为实际参数 cout<<c<<endl; return 0;... 阅读全文