#includeusing namespace std;int main(){ float f;cin>>f; cout<<(short)f<<endl; return 0;} 我用了()让他转型 但他跑出来的都是-32768不管数值输入多少输出都-32768 请问各位我应该怎么做😢
没问题呀