I am tryng to write a program to do the following things
Quote:
Problem
=========================================================================
You have a list of runners and their race times and ages. Create a
program to display the runners sorted by time with a column showing
their ranking within their age group.
The age groups are
0 - 15 years
16 - 29 years
30+ years
Read the following data from a column delimited (fixed field width) text file....
Name Time Age
--------------------
Steve 12 33
Tim 34 28
Mark 22 37
Tom 21 30
Cliff 13 33
Vini 17 28
Matt 10 28
Ben 9 29
Brandon 15 14
The output should look something like this, displayed in a GUI.
RACE RESULTS
Name Time Age Ranking
===== ==== === =======
Ben 9 29 1
Matt 10 28 2
Steve 12 33 1
Cliff 13 33 2
Brandon 15 14 1
Vini 17 28 3
Tom 21 30 3
Mark 22 37 4
Tim 34 28 4
present the results in a Windows GUI app.
I can write the console program for this but i can't present the results in a Windows GUI app.
can someone please help me with this program??