题解

这道题的知识点就是sizeof函数的使用。

sizeof 是一个关键字,它是一个编译时运算符,用于判断变量或数据类型的字节大小。

sizeof 运算符可用于获取类、结构、共用体和其他用户自定义数据类型的大小。

使用 sizeof 的语法如下:

sizeof (data type)

其中,data type 是要计算大小的数据类型,包括类、结构、共用体和其他用户自定义数据类型。

//使用的是C++
#include <iostream>
using namespace std;
int main()
{
    cout << "The size of short is " << sizeof(short) << " bytes." << endl;
    cout << "The size of int is " << sizeof(int) << " bytes." << endl;
    cout << "The size of long is " << sizeof(long) << " bytes." << endl;
    cout << "The size of long long is " << sizeof(long long) << " bytes." << endl;
    return 0;
}

资料参考

sizeof函数|百度百科

叨叨一个小插曲

牛客在线编程的编译器检测答案需与正确答案完全一样才行,我在做题的过程中,少打了几个空格,结果一直报错,排错了很久,最后我是在本地IDE上编译看到输出结果之后才发现这个错误。

(PS.我发现在“通过的代码”里,有很多小伙伴都是在C++环境下用C语言来通过这道题的。)