Change the color of numbers in output

Light Poster
4Dec2008,15:22   #1
kabirk007's Avatar
hi everybody,

i have a very simple question, plz. find the answer for me.

we have designed a program which will show the numbers of 1-100.
those numbers which are division of 2 show in red color.
which are not division of 2 show in blue color.

Thanks
Go4Expert Founder
4Dec2008,15:33   #2
shabbir's Avatar
So what have you tried with this because it does not seem to be a very difficult logic.
Mentor
4Dec2008,17:18   #3
xpi0t0s's Avatar
Do you already know how to display text in red or blue?
Do you know how to determine whether or not a number is divisible by 2?

What operating system are you using, and what compiler? Display of coloured text is not standard in C and is platform and compiler specific.
Contributor
5Dec2008,10:45   #4
back from retirement's Avatar
Yes....in my Borland Turbo C++, display in colour is not possible...otherwise, the logic to use is very simple...you have to seperate the nos. from 1 to 100 in two arrays of equal size....depending on the odd-even criteria....and then use your logic to print one array in red, and the other in blue....as per instruction...
Mentor
5Dec2008,13:09   #5
xpi0t0s's Avatar
Storing the numbers in two arrays seems unnecessarily complicated; the OP just says you have to display the numbers in red or blue which you can do without any storage (except a loop variable).
Contributor
5Dec2008,13:37   #6
back from retirement's Avatar
Yes....that's true....I haven't noticed it....