#include <bits/stdc++.h>
using namespace std; int main() { cout << sizeof(float) << " " << sizeof(double); return 0; }
#include <bits/stdc++.h> using namespace std;
int main() { float a; double b; cout << sizeof(a) << " " << sizeof(b); return 0; }
Using your 蒙青创OJ universal account