赞
踩
这道题思路很简单,只要输出“Hello,World!”就可以了。
#include<bits/stdc++.h>using namespace std;int main(){ cout<<"Hello,World!"; return 0;}