1.编程实现:用sizeof运算符计算C++中char, short, int, long,
3个回答
展开全部
#include<iostream.h>
#include<iomanip.h>
void main()
{
cout<<setw(6)<<"char"<<setw(3)<<sizeof(char)<<endl;
cout<<setw(6)<<"short"<<setw(3)<<sizeof(short)<<endl;
cout<<setw(6)<<"int"<<setw(3)<<sizeof(int)<<endl;
cout<<setw(6)<<"long"<<setw(3)<<sizeof(long)<<endl;
}
/*控制符endl代表换行,要指定输出列数或者对齐,可用控制符setw,其头文件是iomanip.h。如,setw(5)的作用是为后面的输出项预留5列,如输出长度不足5列,自动向右靠齐,如果超过5列,则按实际长度输出。在C中用printf函数输出时,可以指定输出格式。*/
#include<iomanip.h>
void main()
{
cout<<setw(6)<<"char"<<setw(3)<<sizeof(char)<<endl;
cout<<setw(6)<<"short"<<setw(3)<<sizeof(short)<<endl;
cout<<setw(6)<<"int"<<setw(3)<<sizeof(int)<<endl;
cout<<setw(6)<<"long"<<setw(3)<<sizeof(long)<<endl;
}
/*控制符endl代表换行,要指定输出列数或者对齐,可用控制符setw,其头文件是iomanip.h。如,setw(5)的作用是为后面的输出项预留5列,如输出长度不足5列,自动向右靠齐,如果超过5列,则按实际长度输出。在C中用printf函数输出时,可以指定输出格式。*/
参考资料: 东北大学出版社《新概念C语言》
展开全部
指针所占的字节数都是机器的位数
32位的机器占32/8=4字节
不用计算了吧
cout<<"sizeof(char*)="<<sizeof(char*)<<endl
<<"sizeof(short*)="<<sizeof(short*)<<endl
<<"sizeof(int*)="<<sizeof(int*)<<endl
<<"sizeof(long*)="<<sizeof(long*)<<endl
<<"sizeof(float*)="<<sizeof(float*)<<endl
<<"sizeof(double*)="<<sizeof(double*)<<endl;
32位的机器占32/8=4字节
不用计算了吧
cout<<"sizeof(char*)="<<sizeof(char*)<<endl
<<"sizeof(short*)="<<sizeof(short*)<<endl
<<"sizeof(int*)="<<sizeof(int*)<<endl
<<"sizeof(long*)="<<sizeof(long*)<<endl
<<"sizeof(float*)="<<sizeof(float*)<<endl
<<"sizeof(double*)="<<sizeof(double*)<<endl;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream.h>
main()
{
cout<<"char:"<<sizeof(char)<<endl;
}
main()
{
cout<<"char:"<<sizeof(char)<<endl;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询