#include <bits/stdc++.h> using namespace std; int main(){ float a; cin>>a; a*=10; static_cast<int>(a); cout<<a/19; return 0; }
是因为类型转换的问题吗,本蒟蒻不理解