Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
58530 | 王一涵(吃土豆长大的马铃薯) | Hello,World! | C++ | Accepted | 0 MS | 248 KB | 250 | 2024-12-12 16:49:49 |
#include<iostream> // 引入iostream头文件 using namespace std; // 声明命名空间 int main() // 主函数 { cout<<"Hello,World!"<<endl; // 输出一句话 //cout<<"我爱我的家乡"; return 0; // 返回0 }