aLiAnNaH^
2010-09-01 05:02:19 UTC
1.) A function named printDate which accepts the year, month and day as integers and print them like "12/31/09".
2.) A function named printHour which accepts the hour, minute and second as integers and print them like "1:30:50".
3.) A function named printSpaced which accepts three characters. It will print them like "P O L". -- put spaces in between the characters
4.) A function named printReversed which accepts four characters. It will print them in reverse order. For example, if the input is 'A', 'B', 'C', 'D', it will output "DCBA".
5.) The function main. Main will ask FROM the USER to input six integers and four characters. It will pass them to the above functions to be print-formatted.