You are currently in legacy mode. Some additional features will be unavailable. We strongly recommend switching to standard mode on a modern browser. Standard mode Hidden

#include <iostream> // 包含头文件
using namespace std; // 使用名空间
int main(){ //主函数:代码从主函数开始运行
  cout << "Hello World!"; //代码:输出常量字符串
  return 0;
}

0 comments

No comments so far...