Sunday 8 April 2012

6).Write a Program to Generate and Print First ' N ' FIBONACCI Number.

#include<conio.h>
#include<iostream.h>
#include<math.h>

void main()
{
 clrscr();

  int num1=0,num2=1,N,num3;

  cout<<" ENTER THE NUMBERS  ";
  cin>>N;
  cout<<" "<<num1<<" "<<num2;
   while(N<=100)
   {
       num3=num1+num2;
       cout<<" "<<num3;
       num1=num2;
       num2=num3;
       N++;
   }

       getch();

}

No comments:

Post a Comment

Write a program which reads a set of integers into an integer array and then prints "YES"if all of them are same otherwise print "NO".

#include<stdio.h> int main() { int a[10],M=0,i,n; printf("enter a value for n\n"); scanf("%d",&n); fo...