测试 · 2024-01-07 0

test_blog3

测试代码样式

include <iostream>
using namespace std;

int main ()
{
        cout << "Hello World" << endl;
        return 0;
}
include <iostream>

using namespace std;

int main()
{
    cout << "hello world" << endl;
}