题解 | TD
TD
https://www.nowcoder.com/practice/436b4ad17b6a4c6bbd66d0cd671ed9cf
#include <iostream>
using namespace std;
int main() {
float n;
int m;
scanf("%f%d", &n, &m);
printf("%f", n / m);
}
TD
https://www.nowcoder.com/practice/436b4ad17b6a4c6bbd66d0cd671ed9cf
#include <iostream>
using namespace std;
int main() {
float n;
int m;
scanf("%f%d", &n, &m);
printf("%f", n / m);
}
相关推荐
查看15道真题和解析