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
原文地址:https://www.cnblogs.com/dddddd/p/6675829.html