这道超级简单的题目没有任何输入。

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

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

 1 #include<stdio.h>
 2 #include<iostream>
 3 #include<math.h>
 4 #include<string.h>
 5 #include<limits.h>
 6 #include<algorithm>
 7 #include<queue>
 8 using namespace std;
 9 
10 int main()
11 {
12     printf("I\n \nL\no\nv\ne\n \nG\nP\nL\nT\n");
13     return 0;
14 }

 


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-11-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-03
  • 2022-01-31
  • 2021-05-19
  • 2022-12-23
  • 2022-12-23
  • 2022-02-07
相关资源
相似解决方案