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;
}
在屏幕上输出Hello World!。
梦开始的地方\(Ver\ \ 2.0\)。
没什么可说的。
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0),cout.tie(nullptr);
cout<<"Hello World!";
return 0;
}