Respuesta :
Answer:
#include <iostream>
using namespace std;
int main (){
int num=0;
cin>>num;
do{
cout<<num;
cin>>num;
}while(num>=0 && num<=15)
return 0;
}
Explanation:
In this exercise we have to use the computer language knowledge in C++ to write the code as:
the code is in the attached image.
In a more easy way we have that the code will be:
#include <iostream>
using namespace std;
int main (){
int num=0;
cin>>num;
do{
cout<<num;
cin>>num;
}while(num>=0 && num<=15)
return 0;
}
See more about C++ code at brainly.com/question/25870717
![Ver imagen lhmarianateixeira](https://us-static.z-dn.net/files/d80/1be82fe0ef37e0035a200bec6be2d617.png)