Computer Science Canada Program help C++ and window GUI app. |
Author: | wewenaje [ Sun Jan 11, 2009 12:06 am ] |
Post subject: | Program help C++ and window GUI app. |
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?? |
Author: | Vertico [ Sun Jan 11, 2009 10:57 am ] |
Post subject: | Re: Program help C++ and window GUI app. |
http://www.winprog.org/tutorial/ |
Author: | wewenaje [ Sun Jan 11, 2009 11:38 am ] | ||
Post subject: | Re: Program help C++ and window GUI app. | ||
i looked at this site before i was not able to do what i want to do can someone help me change the following c++ code into window gui app. code I use visual c++ 2008 express adition
if it is too much to ask, help me with what you can. |