Devographics / Devographics/surveys

[Comment Report] Expo / 63a3f63ddeab057e52c83cb2

Open
#73 0 comments 0 reactions 0 assignees View on GitHub
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: Expo
- 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--
Completely off-topic

Contributor guide

No contributing guide indexed for this repository

Research direction

Review the reported comment in issue #73 and compare it with the Expo question context. Confirm whether the pasted C++ snippet is off-topic, then record the moderation decision and rationale in the report.

Written by the indexing model from the issue text.

Assessment

Domain
content
Issue type
Bug
Difficulty
1/5
Estimated time
Under an hour
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.