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
ACCESS MORE