为什么只得了80分?
#include <bits/stdc++.h> using namespace std;
int main() { double x; int y; scanf("%lf", &x); scanf("%d", &y); printf("%.*lf\n", y, x); return 0; }
考虑一下 0.15 2 这样子的数据
共 1 条回复
考虑一下 0.15 2 这样子的数据