Skip to main content

Write a program to calculate n term of Fibonacci series using for loop 0,1,1,2,3,5,8.....


//Write a program to calculate n term of Fibonacci series using for  loop 0,1,1,2,3,5,8,.....
#include<stdio.h>
#include<conio.h>
void main()
{
 int n,i,a,b,c=0;
 clrscr();
 printf("Enter value of n:");
 scanf("%d",&n);
 a=0;
 b=1;
 if(n=1)
 printf("0");
 else if(n>=2)
 {
  printf("0,1");
  for(i=1;i<n-1;i++)
  {
   c=a+b;
   printf("%d",c);
   a=b;
   b=c;
  }
 }
 getch();
}

Comments

Our Popular Posts

WAP to enter three numbers and find middle number among them.

// WAP to enter three numbers and find middle number among them. #include<stdio.h> #include<conio.h> void main ( ) { int a , b , c ; clrscr ( ) ; printf ( "Enter three number: \n " ) ; scanf ( "%d%d%d" ,& a ,& b ,& c ) ; if ( ( a > b && a < c ) || ( a > c && a < b ) ) printf ( "%d is middle number" , a ) ; else if ( ( b > a && b < c ) || ( b > c && b < a ) ) printf ( "%d is middle number" , b ) ; else printf ( "%d is middle number" , c ) ; getch ( ) ; } Output:

CTEVT I/II (2073) Electrical Engineering

CTEVT 1st Year/ 2nd Part Subject : Electrical Engineering Year : 2073 Program : Diploma in Computer / IT Eng. (New) Page contain : 2

WAP to find the distance between two points (x1,y1) and (x2,y2).

// WAP to find the distance between two points (x1,y1) and (x2,y2). #include <stdio.h> #include <conio.h> #include <math.h> void main() { int x1,y1,x2,y2; float a=0,b=0,d=0; clrscr(); printf( "Enter x1:\n" ); scanf( "%d" ,&x1); printf( "Enter y1:\n" ); scanf( "%d" ,y1); printf( "Enter x2:\n" ); scanf( "%d" ,x2); printf( "Enter y2:\n" ); scanf( "%d" ,y2); a=x2-x1; b=y2-y1; d=sqrt(a*a+b*b); printf( "Distance = %f" ,a); getch(); }