Looking for answers? Westonci.ca is your go-to Q&A platform, offering quick, trustworthy responses from a community of experts. Explore in-depth answers to your questions from a knowledgeable community of experts across different fields. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our platform.

Coral 3.22 LAB: Loops: Countdown until matching digits

Sagot :

Answer:

//in c++

#include <iostream>

using namespace std;

int main() {

   int i;

   cin >> i;

   do { cout <<i<<" "; } while (i--);

   return 0;

}