wiki.php 用Markdown写wiki是一种什么样的体验?

CPP 计算摄氏度转华氏度.md

最后更新于 2019-10-06 15:00:16

#include <iostream>
using namespace std;

int main()
{
    unsigned int c;
    cin >> c;
    float f = (9.0/5.0) * c + 32.0;
    cout << f << endl;
    cin.get();
    return 0;
}