Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
79672 sh25_zhuwy 认识数据类型 C++ 通过 0 MS 256 KB 405 2026-01-04 14:35:53

Tests(3/3):


#include<iostream> using namespace std; int main(){ int n; float f; double d; bool b; char c; cin>>n; cin>>f; cin>>d; cin>>b; cin>>c; cout<<sizeof(n)<<endl; cout<<sizeof(f)<<endl; cout<<sizeof(d)<<endl; cout<<sizeof(b)<<endl; cout<<sizeof(c)<<endl; cout<<sizeof(n)+sizeof(b)+sizeof(c)+sizeof(f)+sizeof(d); return 0; }


测评信息: