mustaphos
MB Üyesi
- Kayıt
- 14 Eylül 2015
- Mesajlar
- 35
- Tepkiler
- 8
- Yaş
- 29
- Meslek
- Öğrenci
- Üniv
- Anadolu University
Merhaba.
Program istenilen değerde fibonacci sayıları üretir.
İyi çalışmalar.
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
void main ()
{
float x,y,z,i,j;
y = 1;
z = 1;
printf("Please enter an integer : ");
scanf("%f",&x);
if ( x == 1 )
{
printf(">>> %.f\n",y);
}
if ( x == 2 )
{
printf(">>> %.f\n",y);
printf(">>> %.f\n",z);
}
if ( x > 2)
{
printf(">>> %.f\n",y);
printf(">>> %.f\n",z);
for ( i = 2 ; i < x ; i++ )
{
j = y + z ;
y = z ;
z = j ;
printf(">>> %.f\n",j);
}
}
getch();
}
Program istenilen değerde fibonacci sayıları üretir.
İyi çalışmalar.
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
void main ()
{
float x,y,z,i,j;
y = 1;
z = 1;
printf("Please enter an integer : ");
scanf("%f",&x);
if ( x == 1 )
{
printf(">>> %.f\n",y);
}
if ( x == 2 )
{
printf(">>> %.f\n",y);
printf(">>> %.f\n",z);
}
if ( x > 2)
{
printf(">>> %.f\n",y);
printf(">>> %.f\n",z);
for ( i = 2 ; i < x ; i++ )
{
j = y + z ;
y = z ;
z = j ;
printf(">>> %.f\n",j);
}
}
getch();
}