heres my code:
#include<iostream>
using namespace std;
int main()
{
int x;
for(x=3; x<=47; x++)
{
cout<<x;
}
system("pause");
return 0;
}
i just want a little help with this problem: this code cout counts from 3 to 47 but i want to cout 3 then adding 2 to cout 5 then adding 3 cout 8. what should i do to make increment increase? exact output would be this 3 5 8 12 17 23 30 38 47. thanks a lot guys.