2060:【例1.1】计算机输出 题解

题目链接

题目描述

在屏幕上输出Hello World!

解题思路

梦开始的地方\(Ver\ \ 2.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 11:07  Firra3500  阅读(10)  评论(0编辑  收藏  举报