Click here to Skip to main content
15,878,852 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
David Crow1-Jan-13 17:23
David Crow1-Jan-13 17:23 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin1-Jan-13 18:29
mrt-amin1-Jan-13 18:29 
QuestionRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
David Crow2-Jan-13 4:27
David Crow2-Jan-13 4:27 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan1-Jan-13 22:22
mveRichard MacCutchan1-Jan-13 22:22 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 2:41
mrt-amin2-Jan-13 2:41 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 4:25
mveRichard MacCutchan2-Jan-13 4:25 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 9:54
mrt-amin2-Jan-13 9:54 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 10:06
mveRichard MacCutchan2-Jan-13 10:06 
And I explained how to do this in my first answer. Create an array or list which contains the names of all numbers, and use the digits of the numbers to select them. Something like:
C++
char* numbers = { "one", "two", ...
int day = currentDate.day;
cout << numbers[day - 1];
// etc

One of these days I'm going to think of a really clever signature.

GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin2-Jan-13 19:02
mrt-amin2-Jan-13 19:02 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
Richard MacCutchan2-Jan-13 22:02
mveRichard MacCutchan2-Jan-13 22:02 
GeneralRe: For help solving C + + 4.5 ((a numerical calendar date letters)) Pin
mrt-amin3-Jan-13 18:16
mrt-amin3-Jan-13 18:16 
QuestionEmpty String Pin
john563230-Dec-12 20:27
john563230-Dec-12 20:27 
AnswerRe: Empty String Pin
Richard MacCutchan30-Dec-12 22:22
mveRichard MacCutchan30-Dec-12 22:22 
AnswerRe: Empty String Pin
Chris Meech31-Dec-12 1:57
Chris Meech31-Dec-12 1:57 
AnswerRe: Empty String Pin
David Crow31-Dec-12 5:25
David Crow31-Dec-12 5:25 
AnswerRe: Empty String Pin
manem21k2-Jan-13 1:26
manem21k2-Jan-13 1:26 
GeneralRe: Empty String Pin
jeron12-Jan-13 4:21
jeron12-Jan-13 4:21 
GeneralRe: Empty String Pin
manem21k2-Jan-13 22:32
manem21k2-Jan-13 22:32 
QuestionRe: Empty String Pin
CPallini2-Jan-13 10:09
mveCPallini2-Jan-13 10:09 
QuestionMFC Grid control 2.27 Pin
BorisAnimal30-Dec-12 4:46
BorisAnimal30-Dec-12 4:46 
AnswerRe: MFC Grid control 2.27 Pin
Richard MacCutchan30-Dec-12 5:34
mveRichard MacCutchan30-Dec-12 5:34 
QuestionWhen should printf round a floating number up for display? Pin
Member 419459328-Dec-12 5:11
Member 419459328-Dec-12 5:11 
AnswerRe: When should printf round a floating number up for display? Pin
Richard MacCutchan28-Dec-12 5:53
mveRichard MacCutchan28-Dec-12 5:53 
GeneralRe: When should printf round a floating number up for display? Pin
Member 419459328-Dec-12 6:55
Member 419459328-Dec-12 6:55 
GeneralRe: When should printf round a floating number up for display? Pin
Richard MacCutchan28-Dec-12 7:01
mveRichard MacCutchan28-Dec-12 7:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.