int a = 10;

float b;


b = (float)a;

b = float(a);

b = static_cast<float>(a);


cpp표준은 static_cast인데 너무 긴거 같아요.


이걸 줄일려고 노력해봤는데 잘 안되더라구요