- 👋 Hi, I’m @shadow-shang
- 👀 I’m interested in tabletennis and badminton
- 🌱 I’m currently learning artificial intelligence
- 💞️ I’m looking to collaborate on ...
- 📫 How to reach me:[email protected]/or [email protected]
- 😄 Pronouns:infp
- ⚡ Fun fact: he didn't write any thing
int main()
{
float c, f;
printf("请输入摄氏度值: ");
scanf("%f", &c);
f = c * 9.0 / 5.0 + 32.0;
printf("%.2f摄氏度等于%.2f华氏度\n", c, f);
return 0;
}