Commit c07154f1 authored by Administrator's avatar Administrator
Browse files

Initial Commit

parents
#include <iostream>
using namespace std;
// main() 是程序开始执行的地方
/* 这是注释 */
/* C++ 注释也可以
* 跨行
*/
int main(){
cout << "Hello World"; // 输出 Hello World
return 0;
}
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment