1001:Hello,World! 题解

题目链接

题目描述

编写一个能够输出“\(\mathtt{Hello,World!}\)”的程序,这个程序常常作为一个初学者接触一门新的编程语言所写的第一个程序,也经常用来测试开发、编译环境是否能够正常工作。
提示:“\(\mathtt{Hello,World!}\)”中间没空格。

解题思路

梦开始的地方\(Ver 3.0\)
没啥好说的,和这题几乎一样,只是把输出稍微改了一下,可以戳这里

AC Code

#include<bits/stdc++.h>
using namespace std;
int main()
{
    ios::sync_with_stdio(0),cout.tie(nullptr);
    cout<<"Hello,World!";
    return 0;
}
posted @ 2024-07-19 12:53  Firra3500  阅读(2)  评论(0编辑  收藏  举报