L1-026. I Love GPLT

题目地址:https://www.patest.cn/contests/gplt/L1-026
思路:无

注意点:无

 1 #include<stdio.h>
 2 int main(){
 3     char str[]={"I Love GPLT"};
 4     int i;
 5     i=0;
 6     while(str[i]!='\0')
 7     {
 8         printf("%c\n",str[i]);
 9         i++;
10     }
11     return 0;
12 }

 

posted @ 2018-01-19 14:46  爱你的笑  阅读(356)  评论(0编辑  收藏  举报