Forum: C Sep 17th, 2009 |
| Replies: 17 Views: 580 Try changing this:
printf("%c",& array[i]);
to
printf("%d",& array[i]); |
Forum: Python Jun 26th, 2009 |
| Replies: 6 Views: 287 So input() in python 3 returns a string? |
Forum: Python Jun 26th, 2009 |
| Replies: 3 Views: 264 it prints them ontop of eachother, because at the end of each print() in the loop, print() automatically prints a newline, to get rid of this just go print('*', end='') |
Forum: Python Jun 26th, 2009 |
| Replies: 6 Views: 287 First of all, you don't have to do int(input()) because input() returns a number anyway.
And you should start with better explaining the rest of the problem |
Forum: Python Jun 18th, 2009 |
| Replies: 13 Views: 981 You might have to add the PyGame directory, or the python directory to the systems PATH variable, just google "Windows PATH variable" and you should be able to find out how.
You would just add the... |