题解

CPP 刷题王 2023-08-19 13:42:15 2024-01-19 17:07:12 22

这道题目是一道比较简单的题目相信大家都会,那我就不多说了

#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.
{{ vote && vote.total.up }}