surveys
surveys copied to clipboard
[Comment Report] Rollup / 63a3f63ddeab057e52c83cb2
Please explain below why you think this comment should be deleted.
Reported Comment
- question: Rollup
- 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
--explain why you're reporting this comment here--