https://csacademy.com/contest/round-61/task/celsius-to-fahrenheit/
セ氏度の温度が与えられるので、カ氏度に直せ。
なお、小数点以下は切り捨てよ。
解法
wikipediaを見てみると、[F]=[C]*9/5+32とあるので、これをやる。
int C; //--------------------------------------------------------------------------------------------------- void _main() { cin >> C; int ans = C * 9 / 5 + 32; cout << ans << endl; }