At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Get immediate and reliable solutions to your questions from a community of experienced experts on our Q&A platform. Get detailed and accurate answers to your questions from a dedicated community of experts on our Q&A platform.
Sagot :
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:
In this exercise we have to use the knowledge in computational language in C++ to describe a code that best suits, so we have:
The code can be found in the attached image.
To make it simpler we can write this code as:
#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;
}
See more about C++ at brainly.com/question/19705654
We hope our answers were useful. Return anytime for more information and answers to any other questions you have. Thank you for your visit. We're committed to providing you with the best information available. Return anytime for more. Stay curious and keep coming back to Westonci.ca for answers to all your burning questions.