提交时间:2024-09-22 22:18:36
运行 ID: 51630
#include <bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; cout <<fixed<<setprecision(3)<<100.0*b/a<<'%'; return 0; }