怀容
2017-03-09 22:10
#include <stdio.h>
int main()
{
int age = 15;/*为什么这里不可以用short啊*/
short height = 162;
float weight = 82.5;
char isfat = 'y';
printf("年龄:%d 岁\n", age);
printf("身高:%d CM\n", height);
printf("体重:%f KG\n", weight);
printf("是否属于肥胖儿童:%c\n", isfat);
/*%d,%f,%c此类符号在后面会有讲解*/
return 0;
}
在软件里面使用short也是可以的,但是在慕课不行,应该是规定了只能用int
hort,int,long都表示整型值,存储空间的大小不一样。一般,short为半个机器字长,int为一个机器字长,而long为一个或两个机器字长(在32为机器中int和long字长相同)。对于普通电脑都是32为字长所以:short 为2字节int ,long 为4字节
为了各种口味的都试试吧。
C语言入门
926020 学习 · 20793 问题
相似问题