题解:#1.Hello World 审核通过

ttcai666 2024-10-08 21:58:42 19

Hello World

首先需要使用头文件bits/stdc++.h 万能头

接着导入命名空间stdusing namespace std;

然后是主函数`int main()'

最后是输出cout<<"Hello World"

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