Question & Answer: Please write a program to Print the following as shown in diagram…..

Please write a program to Print the following as shown in diagram

FFFFFFFF U U NN NN

FF U U NNN NN

FFFFFFFF U U NN N NN

FF U U NN N NN

FF UUU NN NNN

Please include the following comment

# Created by _________

# In Class Assignment – 1/12/17

# 1/12/17

Expert Answer

 

c++ code to print given shape:

#include <bits/stdc++.h>

using namespace std;

void func(char c, int n)

{

for(int i =0; i<n;i++){

cout << c;

}

}

int main()

{

cout << “nn”;

// 1 //

func(‘F’,8);

func(‘ ‘, 3);

func(‘U’,1);

func(‘ ‘ ,12);

func(‘U’,1);

func(‘ ‘, 3);

func(‘N’, 2);

func(‘ ‘, 8);

func(‘N’, 2);

cout << “n”;

// 2 //

func(‘F’,2);

func(‘ ‘, 9);

func(‘U’,1);

func(‘ ‘ ,12);

func(‘U’,1);

func(‘ ‘, 3);

func(‘N’, 3);

func(‘ ‘, 7);

func(‘N’, 2);

cout << “n”;

// 3 //

func(‘F’,8);

func(‘ ‘, 3);

func(‘U’,1);

func(‘ ‘ ,12);

func(‘U’,1);

func(‘ ‘, 3);

func(‘N’, 2);

func(‘ ‘, 2);

func(‘N’, 1);

func(‘ ‘, 5);

func(‘N’, 2);

cout << “n”;

// 4//

func(‘F’,2);

func(‘ ‘, 11);

func(‘U’,1);

func(‘ ‘ ,8);

func(‘U’,1);

func(‘ ‘, 5);

func(‘N’, 2);

func(‘ ‘, 3);

func(‘N’, 1);

func(‘ ‘, 4);

func(‘N’, 2);

cout << “n”;

// 5//

func(‘F’,2);

func(‘ ‘, 15);

func(‘U’,3);

func(‘ ‘ ,8);

func(‘N’, 2);

func(‘ ‘, 4);

func(‘N’, 1);

func(‘ ‘, 3);

func(‘N’, 2);

cout << “nn”;

return 0;

}

Output:

Still stressed from student homework?
Get quality assistance from academic writers!