FJNU字符串

FJNU字符串

Time Limit: 1 Seconds     Memory Limit: 32768 K

Total Submit:370     Accepted:101


Description

按要求输出字符串"FJNU"^_^ .

Input

第一行只有一个整数n(1<=n<=100),代表测试数据的个数
接下来n行,每行一个整数d,代表最长行输出d个"FJNU".

Output

对于每个测试数据,输出格式见sample output
每个测试数据之间有一个空行

Sample Input

 

2
3
2

 

Sample Output

 

FJNU
FJNUFJNU
FJNUFJNU
FJNUFJNUFJNU
FJNUFJNUFJNU
FJNUFJNUFJNU

FJNU
FJNUFJNU
FJNUFJNU

 

Hint

最后一个测试数据后面不留空行 .

Source

PhoenixWright@fjnu

 

code:

 

#include

using namespace std;

int main()
{

int n=0;
cin>>n;
int* test = new int[n];

for (int i=0; i{
   cin>>test[i];
}

for (i=0; i{
   for (int j=0; j   {
    for (int k=0; k<=j;k++)
    {
     for (int k1=0; k1<=j; k1++)
     {
      cout<<"FJNU";
     }
     cout<    }
   
   }
   cout<}

delete test;
cin.get();
cin.get();
return 0;
}

你可能感兴趣的:(FJNU字符串)