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

L1-026 I Love GPLT (5 分)

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

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

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

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

输入样例:

输出样例:
I

L
o
v
e

G
P
L
T

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<ctime>
#include<cmath>
#include<iostream>
#include<algorithm>
#include<map>
#include<stack>
#include<queue>
#include<set>
#include<vector>
#define ll long long
#define dd double
using namespace std;

ll a[100005];
ll b[100005];
ll c[100005];

int main() {
	cout << "I" << endl << " " << endl << "L" << endl << "o" << endl << "v" << endl << "e" << endl << " " << endl;
	cout << "G" << endl << "P" << endl << "L" << endl << "T" << endl;
}
相关标签: C/C++