At Westonci.ca, we connect you with experts who provide detailed answers to your most pressing questions. Start exploring now! Experience the convenience of getting reliable answers to your questions from a vast network of knowledgeable experts. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.
Sagot :
Answer:
#include <iostream>
using namespace std;
int main()
{
int n = 15;
for(int i=3; i<=n; i=i+3){
cout<<i;
cout<<" ";
}
return 0;
}
Explanation:
Used for loop to calculate number and display it. for start with 3(int i=3), increment by 3(i=i+3) and stop when 15 came (i<=n where n is 15).
We hope our answers were useful. Return anytime for more information and answers to any other questions you have. Thank you for choosing our platform. We're dedicated to providing the best answers for all your questions. Visit us again. Get the answers you need at Westonci.ca. Stay informed by returning for our latest expert advice.