这道超级简单的题目没有任何输入。
你只需要把这句很重要的话 —— I Love GPLT
——竖着输出就可以了。
所谓“竖着输出”,是指每个字符占一行(包括空格),即每行只能有1个字符和回车。
代码长度限制16 KB时间限制400 ms内存限制64 MB
#include <stdio.h>
int main(){
int i;
char words[] = "I Love GPLT";
for (i=0;i<sizeof(words)/sizeof(words[0]);i++){
printf("%c\n",words[i]);
}
return 0;
}