概述
实验1_5_数据类型
#include<stdio.h>
int main() {
char a;
short b;
int c;
long d;
long long e;
float f;
double g;
scanf("%c%hd%d%ld%lld%f%lf", &a, &b, &c, &d, &e, &f, &g);
printf("The 'char' variable is %c,it takes %d byte.n",a,sizeof(char));
printf("The 'short' variable is %hd,it takes %d bytes.n",b,sizeof(short));
printf("The 'int' variable is %d,it takes %d bytes.n",c,sizeof(int));
printf("The 'long' variable is %ld,it takes %d bytes.n",d,sizeof(long));
printf("The 'long long' variable is %lld,it takes %d bytes.n",e,sizeof(long long));
printf("The 'float' variable is %f,it takes %d bytes.n",f,sizeof(float));
printf("The 'double' variable is %lf,it takes %d bytes.n",g,sizeof(double));
return 0;
}
最后
以上就是搞怪蓝天为你收集整理的实验1_5_数据类型的全部内容,希望文章能够帮你解决实验1_5_数据类型所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复