Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
39536 | lihaocheng | 整型数据类型存储空间大小 | C++ | Accepted | 0 MS | 240 KB | 156 | 2024-02-02 20:18:27 |
#include <iostream> using namespace std; int main(){ int a; short b; cout << sizeof(a) << " " << sizeof(b) << endl; return 0; }