The flow chart would go:
----------------------------
Start
Input C (Celsius)
IF C = -999 THEN END
Calculate F (Fahrenheit) using the formula
Output F
Goto next temperature (Input C)
----------------------------
The above needs tidying up and coding in the computer language you are using.
Answer:
#include <iostream>
using namespace std;
void OutputValues(int n1, int n2) {
for (int i = n1; i <= n2; i++) {
cout << i << endl;
}
}
int main() {
int num1;
int num2;
cin >> num1 >> num2;
OutputValues(num1, num2);
return 0;
}
Explanation:
Try using at least one capital letter and multiple number and symbols
Example:
[email protected]#3
Answer:
<a href="url">link text</a>