Tuesday, 17 October 2017
Subscribe to:
Post Comments (Atom)
Python Program to find Fabonacci
fabtab={} def fabonacci(n): fabtab[0]=0 fabtab[1]=1 for i in range(2,n+1): fabtab[i]=fabtab[i-1]+fabtab[i-2] ...

-
input_string=input("Enter a string : ") output_string=input_string[::-1] print("Reverse of string ",input_string,...
-
#include< iostream > #include< conio.h > #include< math.h > using namespace std; int Octal_to_Decimal(long n) { ...
-
#include< iostream > #include< conio.h > using namespace std; int main() { int base, height; float area...
No comments:
Post a Comment