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 #107.55K
1 Posted Topic
Re: [QUOTE=PolarClaw;233376]here is my codes for pascal's triangle... but i do not know how to center align the output... [code]#include <iostream.h> int main() { int n; cin >> n; for (int y = 0; y < n; y++) { int c = 1; for (int x = 0; x <= y; … |
The End.