Write a program that draws a picture of a spaceship, using only cout << statements.
Protip: Remember that using the \ requires that you type it in twice to appear in the console window:
cout<< "\\"<

Respuesta :

Answer:

#include <iostream>

using namespace std;

int main() {

   cout << " \n \

   /\\ \n \

  /  \\ \n \

 |    | \n \

 |NASA| \n \

 |    | \n \

 |    | \n \

 |    | \n \

'      ` \n \

|      | \n \

|      | \n \

|______| \n \

 '-`'-`   . \n \

 / . \\'\\ . .' \n \

''( .'\\.' ' .;' \n \

'.;.;' ;'.;' ..;;'";

   return 0;

}

Explanation: