这道题目是一道比较简单的题目相信大家都会,那我就不多说了
#include <iostream>
using namespace std;
int main() {
puts("Hello World");
return 0;
}
或者一种用 #define
的写法(不要在意
#include <iostream>
#define _ using namespace std; int main() {puts("Hello World"); return 0;}
_
最优解代码:
begin
Write('Hello World');
end.