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 #107.55K
~1K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for PolarClaw

[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; …

Member Avatar for H A hashim
1
1K

The End.