天天看點

1095: 零起點學算法02——輸出簡單的句子

Description

會輸出Hello World!了,那換個句子也會吧? 

Input

沒有輸入

Output

現在要求你輸出下面紅色的字 

Nice to meet you!

Sample Output

Nice to meet you!
           

Source

零起點學算法

Code

#include<iostream>
using namespace std;
int main()
{
    cout<<"Nice to meet you!"<<endl;
}