Algorithm


Problem Name: beecrowd | 2756

Problem Link: https://www.beecrowd.com.br/judge/en/problems/view/2756

Output 10

 

By Roberto A. Costa Jr, UNIFEI BR Brazil

Timelimit: 1

Your programming teacher would like you to do a program with the following characteristics:

  1. Put seven blanks and put the 'A' character;
  2. Put six blanks and place the character 'B', a space and the character 'B';
  3. Put five blanks and place the 'C' character, three white space, and the 'C' character;
  4. Put four blanks and place the 'D' character, five white space, and the 'D' character;
  5. Put three blanks and put the 'E' character, seven white space and the 'E' character;
  6. Repeat procedure 4;
  7. Repeat procedure 3;
  8. Repeat procedure 2;
  9. Repeat procedure 1.

 

Input

 

There is not.

 

Output

 

The result of your program should be written according to the output example.

 

 

 

Input Sample Output Sample
 
       A
      B B
     C   C	  
    D     D
   E       E
    D     D
     C   C
      B B
       A

 

Code Examples

#1 Code Example with C Programming

Code - C Programming


#include <stdio.h>

int main(void)
{
    printf("       A\n");
    printf("      B B\n");
    printf("     C   C\n");
    printf("    D     D\n");
    printf("   E       E\n");
    printf("    D     D\n");
    printf("     C   C\n");
    printf("      B B\n");
    printf("       A\n");

    return 0;
}

Copy The Code & Try With Live Editor

Output

x
+
cmd
A B B C C D D E E D D C C B B A

#2 Code Example with C++ Programming

Code - C++ Programming


#include <iostream>
#include<vector>
#include<string>
#include<algorithm>
#include<iterator>
#include<map>
#include<set>
#include<string>
#include<cstring>
#include<cstdio>
#include<stack>
#include<queue>
#include<math.h>
#include <utility>
#include <sstream>
#include<bitset>

using namespace std;

typedef long long ll;
typedef std::vector < double> vi;

#define PI acos(-1)
#define E 2.718281828459

int main(int argc, char** argv) {
	printf("       A\n");
	printf("      B B\n");
	printf("     C   C\n");
	printf("    D     D\n");
	printf("   E       E\n");
	printf("    D     D\n");
	printf("     C   C\n");
	printf("      B B\n");
	printf("       A\n");
	return 0;
}
Copy The Code & Try With Live Editor

Output

x
+
cmd
A B B C C D D E E D D C C B B A

#3 Code Example with Java Programming

Code - Java Programming


import java.util.*;

public class Main {
	public static void main(String[] args) {
		System.out.printf("       A\n");
		System.out.printf("      B B\n");
		System.out.printf("     C   C\n");
		System.out.printf("    D     D\n");
		System.out.printf("   E       E\n");
		System.out.printf("    D     D\n");
		System.out.printf("     C   C\n");
		System.out.printf("      B B\n");
		System.out.printf("       A\n");
	}
}

Copy The Code & Try With Live Editor

Output

x
+
cmd
A B B C C D D E E D D C C B B A

#4 Code Example with Javascript Programming

Code - Javascript Programming


const output = [
	"       A",
	"      B B",
	"     C   C",
	"    D     D",
	"   E       E",
	"    D     D",
	"     C   C",
	"      B B",
	"       A",
]

console.log(output.join("\n"))
Copy The Code & Try With Live Editor

Output

x
+
cmd
A B B C C D D E E D D C C B B A

#5 Code Example with Python Programming

Code - Python Programming


print('       A')
print('      B B')
print('     C   C')
print('    D     D')
print('   E       E')
print('    D     D')
print('     C   C')
print('      B B')
print('       A')
Copy The Code & Try With Live Editor

Output

x
+
cmd
A B B C C D D E E D D C C B B A
Advertisements

Demonstration


Previous
#2755 Beecrowd Online Judge Solution 2755 Output 9 Solution in C, C++, Java, Js and Python
Next
#2757 Beecrowd Online Judge Solution 2757 Input and Output of Integers Solution in C, C++, Java, Js and Python