Hello,World!(C++)

题目描述

编写一个能够输出 Hello,World! 的程序。

提示: - 使用英文标点符号;

  • Hello,World! 逗号后面没有空格。

  • H 和 W 为大写字母。

样例 #1

样例输入 #1

样例输出 #1

Hello,World!

(1) 

#include<bits/stdc++.h>
using namespace std;
int main() {
	cout << "Hello,World!";
	return 0;
}

(2)

#include<bits/stdc++.h>
using namespace std;
int main() {
	printf("Hello,World!");
	return 0;
}

相关推荐

  1. springboot——helloworld入门

    2024-07-16 07:02:02       42 阅读
  2. python输出HelloWorld

    2024-07-16 07:02:02       49 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-16 07:02:02       67 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-16 07:02:02       72 阅读
  3. 在Django里面运行非项目文件

    2024-07-16 07:02:02       58 阅读
  4. Python语言-面向对象

    2024-07-16 07:02:02       69 阅读

热门阅读

  1. Eclipse 创建 XML 文件

    2024-07-16 07:02:02       22 阅读
  2. Electron 为什么采用多进程,而不是单进程

    2024-07-16 07:02:02       18 阅读
  3. live555 rtsp服务器实战之createNewStreamSource

    2024-07-16 07:02:02       27 阅读
  4. MATLAB的mat文件转换成json文件

    2024-07-16 07:02:02       31 阅读
  5. 统计学随笔

    2024-07-16 07:02:02       23 阅读
  6. 暂停cPanel / WHM帐户的方法

    2024-07-16 07:02:02       20 阅读
  7. .NET C# 使用 iText 生成PDF

    2024-07-16 07:02:02       17 阅读
  8. 服务器的rabbitmq的guest账号登不进去

    2024-07-16 07:02:02       28 阅读
  9. STO SS1 SS2 SLS 安全释义

    2024-07-16 07:02:02       21 阅读