1095:零起点学算法02——输出简单的句子

1095: 零起点学算法02——输出简单的句子

Time Limit: 1 Sec  Memory Limit: 128 MB   64bit IO Format: %lld
Submitted: 3021  Accepted: 2103
[Submit][Status][Web Board]

Description

会输出Hello World!了,那换个句子也会吧? 

 

Input

没有输入

 

Output

现在要求你输出下面红色的字 
Nice to meet you!

 

Sample Output

Nice to meet you!

Source

零起点学算法

 

1 #include<stdio.h> 
2 int main() 
3 { 
4       
5     printf("Nice to meet you!"); 
6       
7     return 0; 
8       
9 }
View Code

 

posted @ 2017-04-06 22:41  Dollis  阅读(451)  评论(0编辑  收藏  举报