#include<stdio.h>
#include<conio.h>
#include<string.h>
int main() {
int i, nextTerm;
int t1 = 2, t2 = 2;
nextTerm = t1+t2;
printf("%d, %d, ", t1, t2);
for (i = 3; i <= 10; ++i) {
printf("%d, ", nextTerm);
t1 = t2;
t2 = nextTerm;
nextTerm = t1 + t2;
}
return 0;
}
2 Thanks
2 Answers
If a vector A is multiplied by a real number (say n), the vector of same nature is obtained but its magnitude is n times that of A.
2 Thanks
2 Answers
7 Claps
0 Comments
5 Claps
1 Comments
7 Thanks
2 Answers
Aksionov used to drink a lot, was riotous, and was involved in illegal activities before his marriage
2 Thanks
2 Answers
2 Claps
0 Comments
