Computer Science, asked by berlinhunter5165, 11 months ago

write a program to display the following series of numbers 100,97,94,91, ... , 4, 1.

Answers

Answered by sswaraj04
3

Answer:

#include <iostream>

using namespace std;

int main()

{

   for(int i=100;i>1;i=i-3)

   cout<<i<<",";

   cout<<"1";

   return 0;

}

Explanation:

Hope it helps :-)

Mark it brainliest

Similar questions