Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
As WaltP said...you can use his code + the ascii codes to fix it on your situation. [url]http://www.asciitable.com/[/url]
Re: A
Hope that helps you! [CODE] # include <stdio.h> int main() { int i,j; for (i=1; i<10; i++) { for (j=1; j<i; j++) printf("%d",j); for (j=i; j>=1; j--) printf("%d",j); printf("\n"); } for (i=9; i>=1; i--) { for (j=1; j<i; j++) printf("%d",j); for (j=i; j>=1; j--) printf("%d",j); printf("\n"); } return 0; } …
The End.
Sgouros