Devographics / Devographics/surveys
[Comment Report] Gatsby / 63a3f63ddeab057e52c83cb2
- Dominant language
- No language data
- Stars
- 69
- Forks
- 7
- PR merge metrics
- No merged PRs in 30d
Description
Please explain below why you think this comment should be deleted.
### Reported Comment
- question: Gatsby
- comment ID: 63a3f63ddeab057e52c83cb2
- comment:
> // File Name: cla8b.cc
2 // This program prints a series of triangles.
3 // Both the depth of the triangle and
4 // the character used to draw each triangle
5 // are supplied by user.
6
7 #include
8
9 using namespace std;
10
11 // declare the prototype for function "DrawTriangle" here
12
13
14 int main()
15 {
16
17 // local variables
18 int height; // the height of the triangle
19 char character; // the character used in drawing the triangle
20
21
22 cout << "Enter the height of the triangle. " ;
23 cout << "Enter the end-of-file character to quit." << endl;
24 cin >> height ;
25 cout << "Enter the character of the triangle. " ;
26 cout << "Enter the end-of-file character to quit." << endl;
27 cin >> character;
28
29 //loop to continue processing triangles
30 //until the user types the end-of-file character.
31 while (cin)
32 {
33 cout << endl << endl;
### Your Report
This is not a real comment
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.