通过次数
0
提交次数
编写程序,要求输出“Hello Pascal”。
无
一行输出,并且换行结尾
Hello Pascal
#include<bits/stdc++.h> using namespace std; int main() { cout<<"Hello Pascal"; return 0; }