1017:浮点型数据类型存储空间大小

#include <bits/stdc++.h>
using namespace std;
int main(){
	float b;
	double c;
	cout<<sizeof(b)<<" "<<sizeof(c);
    return 0;
}