• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

who wants to earn 10 bucks!

Omegachi

Diamond Member
using .net 2003 visual C++

make a grapical program that displays the content of a array(or string) when you click an 'update' button. the way to display the content is with a grid of bitmap. for example, say '1' is a black square and '0' is a white square, if the content of the array is 10100000 then the bitmap will display black sq,white sq, black sq, white, white white...

example

sounds easy right?

i will need your code if you finish the program according to my specs, and i will give your reward via paypal.
 
Originally posted by: rmrf
yes, you will be learning so much from copying someone's program and handing it in!

And that's different from most programming anyone does how???😕

But others are right...

A) No one's going to write that code from scratch for $10.00
B) Do your own homework..
 
Dude, if you don't want to do or can't do that program just get out of CS now. I don't know C++ but in Java that would be quite easy.

For loop that goes through the array (from index zero to size-1), then at each position check if it contains 1, then draw black square, else draw white square.
 
Originally posted by: duragezic
Dude, if you don't want to do or can't do that program just get out of CS now. I don't know C++ but in Java that would be quite easy.

For loop that goes through the array (from index zero to size-1), then at each position check if it contains 1, then draw black square, else draw white square.

QFT
 
Back
Top