跳过正文
Background Image

Test 1

test 1

使用 C++ 输出字符串 “Hello SUES!",只是一个简单的入门实例,需要使用 main() 函数及标准输出 cout和endl。

#include <iostream>
using namespace std;

int main() {
    cout << "Hello SUES!" << endl;
    return 0;
}