题干解读:要求直接打印出 "Hello Nowcoder!"

思路:直接使用cout或printf输出.

#include <iostream>
using namespace std;

int main() {
    cout<<"Hello Nowcoder!";
}