基本数据类型占用的字节数分别为:char(1),short(2),int(4),long(4),long long(8),float(4),double(8)。 分析一下下面结构体占用的字节数。
struct A
{
int a;
};
struct B
{
char a;
int b;
};
int main()
{
printf("sizeof(struct A)%d\n", sizeof(struct A));//测…
public class L3 {public static void main(String[] args) {int cnt 0;//记录满足要求的个数//立方再往上,各位相加不会等于原数for (int i 1; i < 100; i) {//得到三次方int ans (int) Math.pow(i, 3);//得到立方的每位数相加int number get(ans);//判断是…