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.71K
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for khevz09

[CODE]#include <iostream> #include <string> using namespace std; int height, row, spaces, character; int main() { cout<<"Enter N: "; cin>>height; for (row = 0; row < height; row ++) { for (spaces = 0; spaces < row; spaces ++) cout<<" "; for (character =1; character < 2*(height-row); character ++) cout<<"#"; cout<<"\n"; …

Member Avatar for cejay2b20
0
1K

The End.