Mazak?
Michael Zalewski   United States
 
 
#include <iostream>
#include <string>

int main() {
// Define the 5x8 pixel graphics for each letter
const std::string m[] = {
"* *",
"** **",
"* * *",
"* *",
"* *"
};

const std::string a[] = {
" * ",
" * * ",
"* *",
"*****",
"* *"
};

const std::string z[] = {
"*****",
" * ",
" * ",
" * ",
"*****"
};

const std::string k[] = {
"* * ",
"* * ",
"** ",
"* * ",
"* * "
};

// Output the word "Mazak"
std::string word[5];
for (int i = 0; i < 5; i++) {
word = m + " " + a + " " + z + " " + a + " " + k ;
std::cout << word << std::endl;
}

return 0;
}
Currently Offline