Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141121_fibonacci
//Title of this code #include <stdio.h> #define _SIZE 80 int main() { long long fibo[_SIZE]; short i; for(fibo[0] = fibo[1] = 1 , i = 2 ; i < _SIZE ; i++) { fibo[i] = fibo[i - 1] + fibo[i - 2]; } for(i = 0 ; i < _SIZE ; i++) { printf("%3hd --> %20lld\n", i + 1 , fibo[i]); } return 0; }
run
|
edit
|
history
|
help
0
h
If then price calculation v1
tickeParsing.c
experimento con quicksort
4qwrfdsfsaf
a.c
PuntosTriangulo
Practica 5 ejercicio beneficio empresa
B_141202_PALINDROMO
Character testing