1095:零起点学算法02——输出简单的句子
1095: 零起点学算法02——输出简单的句子
Time Limit: 1 Sec Memory Limit: 128 MB 64bit IO Format: %lldSubmitted: 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 }