Posts
 
Reputation
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
~197 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for moroccanplaya

As WaltP said...you can use his code + the ascii codes to fix it on your situation. [url]http://www.asciitable.com/[/url]

Member Avatar for TomaCukor
0
100
Member Avatar for sh4rif
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; } …

Member Avatar for Sgouros
0
97

The End.