欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

L1-026 I Love GPLT(5 分)

程序员文章站 2024-02-02 15:49:52
...

L1-026 I Love GPLT(5 分)
这道超级简单的题目没有任何输入。

你只需要把这句很重要的话 —— “I Love GPLT”——竖着输出就可以了。

所谓“竖着输出”,是指每个字符占一行(包括空格),即每行只能有1个字符和回车。

#include<stdio.h>
#include<string.h>
int main()
{
   int n,i;
   char a[]={"I Love GPLT"};
   n=strlen(a);
   for(i=0;i<n;i++)
   {
       printf("%c\n",a[i]);
   }
   return 0;
}