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
1 Posted Topic
[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"; …
The End.
cejay2b20