Challenge accepted!

So, as of now, December 6th, I watched Codecademy’s stream on the C++ course, and I made an entry for it.

Here’s the code:

#include <iostream>

int main() {
	
	std::cout << "MMMMMMMMM       AA         RRRR   K  K  \n";
	std::cout << "M   M   M      A  A        R  R   K K   \n";
	std::cout << "M   M   M     A    A       RRRR   KK    \n";
	std::cout << "M   M   M    AAAAAAAA      RR     KK    \n";
	std::cout << "M   M   M   A        A     R R    K K   \n";
	std::cout << "M   M   M  A          A    R  R   K  K  \n\n";
	std::cout << "Made by _MarkVIII_\n\n";
	return 0;
	
}
4 Likes

Awesome stuff! So glad you liked the live stream!

2 Likes

@_markviii :slight_smile:

2 Likes

Oh, I assume you were the one in the stream! Thanks for coming here :smile:

3 Likes

Nice! So this is what you were talking about! Nice job @_markviii!

2 Likes