4022 - 第一个C++程序
输出两行文字:
文明创建,人人有责。
China is a great country!
Input
Output
文明创建,人人有责。
Examples
Input
no input needed
Output
文明创建,人人有责。 China is a great country!
Solution C++
#include<iostream> using namespace std; int main() { cout<<"文明创建,人人有责。"<<endl; cout<<"China is a great country!"<<endl; return 0; }