I might be interpreting incorrectly... rephrase/repeat the instructions?...
Pseudo:
Two array:
----myArray1{1,2,3,4,5}
----myArray2{A,B,C,D,E}
print out a chart of those characters corresponding to the numbers entered |
Logic:1->A,2->B,3->C,4->D,5->E
Appearance:
1 A
2 B
3 C
4 D
5 E
Loop(start = 0;start <6;start ++)
----Print--myArray1[start]
----Print--space
----Print--myArray2[start]
----Print--newLine
Edit #1:
A chart:
Characters that correlate with their Numbers?
Edit #2:
Or do you mean:
Print out a chart(Quadrant II right triangle) whose size was prompted to the user and whose values were entered by the user?
Still unsure of what you're asking.
Edit #3:
Ah.
5,B:____B
2,D:_D___
3,F:__F__
1,A:A____
4,C:___C_
Is this what you mean?
Edit #4:
Oh, slowly fill up =D
Loop(/*Stuff*/)
----Prompt user for the integer:
----Prompt user for the character:
----Insert integer and character into their appropriate indexes.
Repeat
Loop(/*Stuff*/)//(Incrementing)
----Print Character @ index, based on value @ index; at its corresponding location.
----(Printing more each time)
Repeat
That should do it.