Give a recursive definition for the set of all integers greater than 5 and are multiples of 3.
#include <iostream>
using namespace std;
void print(int n){
// if n is less than 5 than return
if(n<5)
return;
//checking if it is mulitple of 5 than print it
if(n%3==0)
cout<<n<<" ";
//decreaing the n
print(n-1);
}
int main()
{
print(100);
return 0;
}

Note : Please comment below if you have concerns. I am here to help you
If you like my answer please rate and help me it is very Imp for me
Give a recursive definition for the set of all integers greater than 5 and are multiples...