At Westonci.ca, we make it easy for you to get the answers you need from a community of knowledgeable individuals. Get detailed and precise answers to your questions from a dedicated community of experts on our Q&A platform. 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).
Thank you for visiting. Our goal is to provide the most accurate answers for all your informational needs. Come back soon. Thank you for your visit. We're dedicated to helping you find the information you need, whenever you need it. Thank you for using Westonci.ca. Come back for more in-depth answers to all your queries.