摘要: A. Thermometer 模拟 代码实现 #include <bits/stdc++.h> using namespace std; int main() { double x; cin >> x; if (x >= 38) puts("1"); else if (x >= 37.5) puts 阅读全文