94.7k views
2 votes
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<< "\\"<

User Hermeslm
by
5.2k points

1 Answer

2 votes

Answer:

#include <iostream>

using namespace std;

int main()

Step-by-step explanation:

User NirMH
by
4.8k points