Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
20261 | tangcong | Hello,World! | C++ | Accepted | 0 MS | 240 KB | 250 | 2023-06-13 20:33:11 |
#include<iostream> // 引入iostream头文件 using namespace std; // 声明命名空间 int main() // 主函数 { cout<<"Hello,World!"<<endl; // 输出一句话 //cout<<"我爱我的家乡"; return 0; // 返回0 }