Pegare un cpp aqui. #include <iostream> #include <stdio.h>
using namespace std;
int main(int argc, char** argv) {
int i,x=0,y=1,z=0;
printf("\t\t\\\"SERIE DE FIBONACCI\?\"\\\b\t\a\n");
printf("INGRESA EL NUMERO HASTA EL QUE QUIERES LA SUCESION: \n");
cin>>i;
cout<<"LOS NUMEROS SON: "<<z<<" ";
for (int s=0;s<i;s++) // n Veces que el usuario dicte
{
if (s<=1)
z=s;
else
{
z=x+y;
x=y;
y=z;
}
cout<<z<<" ";
}
cin.get();
return 0;
}
- CDMX, México
- JoinedFebruary 14, 2016
- website: soundcloud.com/nexdrak
Following
Sign up to join the largest storytelling community
or