Posted by Mike on Wednesday, September 28, 2011 at 11:26pm.
The trick here is to design each letter in a 6x6 matrix. Each letter will therefore be made up of an array of 6 strings, each of which will have 6 characters.
Example string array which can be name
by the letters themselves:
String[] f={
"FFFFFF",
"F",
"FFF",
"F",
"F",
"F"
};
So to display the letters, you only have to print them on six lines, like:
for(int i=0;i<6;i++){
System.out.println(j[i]+" "+f[i]);
}
(I am using Java syntax, hope you can do the conversion for C#)
Related Questions
C# - Write a program that displays your initials in a pattern on the screen. ...
c programming - Plz give me some idea that how can i do this program. Write a ...
programming - write a program that asks the user to enter an objects mass, and ...
Computer programming - problem: Write a program that accepts your first name ...
c programming - Write a program that uses a 20x20 board, initialised to a given ...
computer programming - Write a program that uses a 20x20 board, initialised to a...
computer programming - Write a program that uses a 20x20 board, initialised to a...
C programming - I'm suppose to write a program using functions and modules ...
Programming - Write a pseudocode program that asks the user for an integer ...
Programming in c++ - Write a program in c++ that inputs a number [1-12] from the...
For Further Reading