fff1

C#include <stdio.h>#include <stdlib.h>int main(){char ch;int a;short b;long c;float d;double e;ch = 'a';a = 1;b = 9;c = 2333;d = 1.5;e = 1.5;printf("%d\n",sizeof(ch));printf("%d\n",sizeof(a));printf("%d\n",sizeof(b));printf("%d\n",sizeof(c));printf("%d\n",sizeof(d));printf("%d\n",sizeof(e));printf("%d\n",sizeof(a+b));}

猜你喜欢

转载自www.cnblogs.com/Dylan7/p/11059036.html
fff
ff1