How to write a program to show a line by line equation ?
Hello , everybody . I have a question and that is how to write a program in c++ , Qbasic or visual basic to input a line equation and the program outputs the line shape ?
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | jiangly | 3631 |
| 4 | Kevin114514 | 3574 |
| 5 | maroonrk | 3521 |
| 6 | strapple | 3515 |
| 7 | Radewoosh | 3461 |
| 8 | tourist | 3428 |
| 9 | turmax | 3378 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 140 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
Hello , everybody . I have a question and that is how to write a program in c++ , Qbasic or visual basic to input a line equation and the program outputs the line shape ?
| Name |
|---|



//input for y = mx + c -> m and c
double m; //slope
double c; //y intercept
cin >> m >> c;
for(int x=-1000; x<=1000; x++){
double y = m*x + c;
plot(x, y); //assumed plot plots (x, y) point
}