0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
2 Posted Topics
hey there Daniweb. So I am in need of some help with a project I have. We need to create a program that will print out rows of asterisks as tall as defined by the user. [CODE]For example, if the user entered, 1 2 3 4 3 2 1 10 …
we actually just had to code this in my class, here ill get you my code [CODE]#include <iostream> #include <string> using namespace std; int main() { int number = 10; cin >> number; switch (number) { case 1: cout << "one" << endl; break; case 2: cout << "Two" << …
The End.
wakesin