Guys pls help meee. Pleasseee | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

Guys pls help meee. Pleasseee

How to make a program using FOR LOOP create a Fibonacci sequence and MULTIPLICATION TABLE . But FOR loop will be used Twice only. THE BASIC ONE. 1,1,2,3,5,8,13,21,34, PLEASE. HELP ME GUYSS .

9th Aug 2016, 1:29 PM
khaye llanera
khaye llanera - avatar
3 Answers
+ 2
If you know arrays is simple but you have to introduce how many times you want it to do the operation. otherwise it will never stop. #include <iostream> using namespace std; int i,v[1000],j,n; int main() { cin>>n; v[1]=1; for(i=2;i<=n;i++) v[i]=v[i-1]+v[i-2]; for(i=1;i<=n;i++) cout<<v[i]<<" "; return 0; }
9th Aug 2016, 1:38 PM
Robert—Valentin Veliscu
Robert—Valentin Veliscu - avatar
+ 2
#include <iostream> using namespace std; int i,x,j,n; int main() { cin>>n; x=1; j=1; int ok=0; cout<<x<<" "<<j<<" "; for(i=3;i<=n;i++) { if(ok==0) {x=x+j; cout<<x<<" "; ok=1; } else { j=x+j; cout<<j<<" "; ok=0; } } return 0; }
9th Aug 2016, 1:56 PM
Robert—Valentin Veliscu
Robert—Valentin Veliscu - avatar
0
Were not allowed to use anything but ONLY FOR LOOP
9th Aug 2016, 1:42 PM
khaye llanera
khaye llanera - avatar